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

Side by Side Diff: BUILD.gn

Issue 2663063006: Move the kernel isolate snapshot out of the 'runtime' target to reduce build times on the simulator… (Closed)
Patch Set: Created 3 years, 10 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 | runtime/vm/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) 2016, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2016, 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 # This target will be built if no target is specified when invoking ninja. 5 # This target will be built if no target is specified when invoking ninja.
6 group("default") { 6 group("default") {
7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { 7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
8 # Fuchsia has run_vm_tests marked testonly. 8 # Fuchsia has run_vm_tests marked testonly.
9 testonly = true 9 testonly = true
10 } 10 }
(...skipping 24 matching lines...) Expand all
35 testonly = true 35 testonly = true
36 } 36 }
37 deps = [ 37 deps = [
38 "runtime/bin:dart", 38 "runtime/bin:dart",
39 "runtime/bin:dart_bootstrap($host_toolchain)", 39 "runtime/bin:dart_bootstrap($host_toolchain)",
40 "runtime/bin:process_test", 40 "runtime/bin:process_test",
41 "runtime/bin:run_vm_tests", 41 "runtime/bin:run_vm_tests",
42 "runtime/bin:sample_extension", 42 "runtime/bin:sample_extension",
43 "runtime/bin:test_extension", 43 "runtime/bin:test_extension",
44 "runtime/vm:patched_sdk", 44 "runtime/vm:patched_sdk",
45 ]
46 }
47
48 group("runtime_kernel") {
49 deps = [
50 ":runtime",
jamesr1 2017/01/31 23:10:02 unfortunately this breaks the fuchsia GN build as
rmacnak 2017/01/31 23:26:10 runtime and runtime_kernel should have the same te
45 51
46 # TODO(rmacnak): Link this into 'dart' 52 # TODO(rmacnak): Link this into 'dart'
47 "utils/kernel-service:kernel-service", 53 "utils/kernel-service:kernel-service",
48 ] 54 ]
49 } 55 }
50 56
51 group("runtime_precompiled") { 57 group("runtime_precompiled") {
52 deps = [ 58 deps = [
53 "runtime/bin:dart_bootstrap($host_toolchain)", 59 "runtime/bin:dart_bootstrap($host_toolchain)",
54 "runtime/bin:dart_precompiled_runtime", 60 "runtime/bin:dart_precompiled_runtime",
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 rebase_path(input), 245 rebase_path(input),
240 "--output-file", 246 "--output-file",
241 rebase_path(output), 247 rebase_path(output),
242 "--build-id-map", 248 "--build-id-map",
243 rebase_path("$target_gen_dir/build_id_map"), 249 rebase_path("$target_gen_dir/build_id_map"),
244 "--compress", 250 "--compress",
245 ] 251 ]
246 } 252 }
247 } 253 }
248 } 254 }
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698