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

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

Issue 2848943003: [infra] Assembles the SDK using GN rather than create_sdk.py (Closed)
Patch Set: Move copy_dev_compiler_tools out of the default full SDK build Created 3 years, 7 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 | « runtime/observatory/BUILD.gn ('k') | sdk/BUILD.gn » ('j') | 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 import("../../build/executable_suffix.gni") 5 import("../../build/executable_suffix.gni")
6 import("../../build/prebuilt_dart_sdk.gni") 6 import("../../build/prebuilt_dart_sdk.gni")
7 import("../../utils/generate_patch_sdk.gni") 7 import("../../utils/generate_patch_sdk.gni")
8 import("gypi_contents.gni") 8 import("gypi_contents.gni")
9 import("../runtime_args.gni") 9 import("../runtime_args.gni")
10 10
11 config("libdart_vm_config") { 11 config("libdart_vm_config") {
12 if (defined(is_fuchsia) && is_fuchsia) { 12 if (is_fuchsia) {
13 libs = [ "magenta" ] 13 libs = [ "magenta" ]
14 } else if (is_win) { 14 } else if (is_win) {
15 libs = [ 15 libs = [
16 "advapi32.lib", 16 "advapi32.lib",
17 "shell32.lib", 17 "shell32.lib",
18 "dbghelp.lib", 18 "dbghelp.lib",
19 ] 19 ]
20 } else { 20 } else {
21 libs = [ "dl" ] 21 libs = [ "dl" ]
22 if (!is_android) { 22 if (!is_android) {
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 processed_gypis.vmservice_runtime_sources, 471 processed_gypis.vmservice_runtime_sources,
472 "../lib", 472 "../lib",
473 ], 473 ],
474 [ 474 [
475 "io", 475 "io",
476 processed_gypis.bin_io_sources, 476 processed_gypis.bin_io_sources,
477 "../bin", 477 "../bin",
478 ], 478 ],
479 ] 479 ]
480 } 480 }
OLDNEW
« no previous file with comments | « runtime/observatory/BUILD.gn ('k') | sdk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698