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

Unified Diff: BUILD.gn

Issue 2023703002: Beginning work on GN build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Really add //build. Add dart_bootstrap rule. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .gn ('k') | DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..14b9de2dbfb357b031b9e18dffe8c97ce834b2b9
--- /dev/null
+++ b/BUILD.gn
@@ -0,0 +1,39 @@
+# Copyright (c) 2016, 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.
+
+# This target will be built if no target is specified when invoking ninja.
+group("default") {
+ testonly = true
+ deps = [
+ "//runtime/bin:dart",
+ ]
+}
+
+ # {
+ # # This is the target that is built on the VM build bots. It
+ # # must depend on anything that is required by the VM test
+ # # suites.
+ # 'target_name': 'runtime',
+ # 'type': 'none',
+ # 'dependencies': [
+ # 'runtime/dart-runtime.gyp:dart',
+ # 'runtime/dart-runtime.gyp:dart_bootstrap#host',
+ # 'runtime/dart-runtime.gyp:run_vm_tests',
+ # 'runtime/dart-runtime.gyp:process_test',
+ # 'packages',
+ # 'runtime/dart-runtime.gyp:test_extension',
+ # 'runtime/dart-runtime.gyp:sample_extension',
+ # ],
+ # },
+
+group("runtime") {
+ testonly = true
+ deps = [
+ "//runtime/bin:dart",
+ "//runtime/bin:dart_bootstrap($host_toolchain)",
+ "//runtime/bin:run_vm_tests",
+ "//runtime/bin:process_test",
+ "//pkg",
+ ]
+}
« no previous file with comments | « .gn ('k') | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698