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

Side by Side Diff: BUILD.gn

Issue 2725173002: Change BUILD.gn to force ninja file regeneration (Closed)
Patch Set: Created 3 years, 9 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) 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 47
48 group("runtime_kernel") { 48 group("runtime_kernel") {
49 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { 49 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
50 # Fuchsia has run_vm_tests marked testonly. 50 # Fuchsia has run_vm_tests marked testonly.
51 testonly = true 51 testonly = true
52 } 52 }
53 deps = [ 53 deps = [
54 ":runtime", 54 ":runtime",
55 55
56 # TODO(rmacnak): Link this into 'dart' 56 # TODO(rmacnak): Link this into 'dart'.
57 "utils/kernel-service:kernel-service", 57 "utils/kernel-service:kernel-service",
58 ] 58 ]
59 } 59 }
60 60
61 group("runtime_precompiled") { 61 group("runtime_precompiled") {
62 deps = [ 62 deps = [
63 "runtime/bin:dart_bootstrap($host_toolchain)", 63 "runtime/bin:dart_bootstrap($host_toolchain)",
64 "runtime/bin:dart_precompiled_runtime", 64 "runtime/bin:dart_precompiled_runtime",
65 "runtime/bin:process_test", 65 "runtime/bin:process_test",
66 "runtime/vm:patched_sdk", 66 "runtime/vm:patched_sdk",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 rebase_path(input), 253 rebase_path(input),
254 "--output-file", 254 "--output-file",
255 rebase_path(output), 255 rebase_path(output),
256 "--build-id-map", 256 "--build-id-map",
257 rebase_path("$target_gen_dir/build_id_map"), 257 rebase_path("$target_gen_dir/build_id_map"),
258 "--compress", 258 "--compress",
259 ] 259 ]
260 } 260 }
261 } 261 }
262 } 262 }
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