Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: runtime/bin/BUILD.gn

Issue 1313973005: Use a source_set instead of static_library for libdart_embedder_noio (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 5
6 declare_args() { 6 declare_args() {
7 dart_io_support = false 7 dart_io_support = false
8 } 8 }
9 9
10 10
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "$target_gen_dir/io_gen.cc", 168 "$target_gen_dir/io_gen.cc",
169 "$target_gen_dir/io_patch_gen.cc", 169 "$target_gen_dir/io_patch_gen.cc",
170 ] 170 ]
171 171
172 include_dirs = [ 172 include_dirs = [
173 "..", 173 "..",
174 ] 174 ]
175 } 175 }
176 176
177 177
178 static_library("libdart_embedder_noio") { 178 source_set("libdart_embedder_noio") {
179 configs += ["..:dart_config",] 179 configs += ["..:dart_config",]
180 deps = [ 180 deps = [
181 "..:libdart", 181 "..:libdart",
182 "../vm:libdart_platform", 182 "../vm:libdart_platform",
183 ] 183 ]
184 } 184 }
185 185
186 io_impl_sources_gypi = 186 io_impl_sources_gypi =
187 exec_script("../../tools/gypi_to_gn.py", 187 exec_script("../../tools/gypi_to_gn.py",
188 [ rebase_path("io_impl_sources.gypi") ], 188 [ rebase_path("io_impl_sources.gypi") ],
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 "log_macos.cc", 235 "log_macos.cc",
236 "log_win.cc", 236 "log_win.cc",
237 "log.h", 237 "log.h",
238 ] 238 ]
239 239
240 include_dirs = [ 240 include_dirs = [
241 "..", 241 "..",
242 "//third_party" 242 "//third_party"
243 ] 243 ]
244 } 244 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698