971f4845d7
Change some static_libraries to source_sets to make ODR violations link-time errors. This is needed to enable (stop suppressing) -fvisibility=hidden in Fuchsia product builds. Change-Id: I699cec8d4b516beab9cebf9db0a522a7ff99e004 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/99822 Reviewed-by: Zach Anderson <zra@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
14 lines
452 B
Plaintext
14 lines
452 B
Plaintext
# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import("../configs.gni")
|
|
import("platform_sources.gni")
|
|
|
|
library_for_all_configs("libdart_platform") {
|
|
target_type = "source_set"
|
|
public_configs = [ "../vm:libdart_vm_config" ]
|
|
sources = platform_sources
|
|
include_dirs = [ ".." ]
|
|
}
|