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

Unified Diff: dart/dart.gyp

Issue 11359187: Allow tests to specify a package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 8 years, 1 month 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 | « no previous file | dart/pkg/args/test/args_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/dart.gyp
diff --git a/dart/dart.gyp b/dart/dart.gyp
index 3ec8489bf257809e14183f5e76709c72a2427c26..b76a758de5735cd048c36901a4c325c43863b149 100644
--- a/dart/dart.gyp
+++ b/dart/dart.gyp
@@ -13,6 +13,9 @@
'actions': []
},
{
+ # 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': [
@@ -21,6 +24,7 @@
'runtime/dart-runtime.gyp:run_vm_tests',
'runtime/dart-runtime.gyp:process_test',
'runtime/dart-runtime.gyp:test_extension',
+ 'packages',
],
},
{
@@ -104,11 +108,15 @@
],
},
{
+ # This is the target that is built on the dart2js build bots.
+ # It must depend on anything that is required by the dart2js
+ # test suites.
'target_name': 'dart2js_bot',
'type': 'none',
'dependencies': [
'third_party/v8/src/d8.gyp:d8',
'create_sdk',
+ 'packages',
],
},
{
@@ -125,5 +133,12 @@
'samples/sample_extension/sample_extension.gyp:sample_extension',
],
},
+ {
+ 'target_name': 'packages',
+ 'type': 'none',
+ 'dependencies': [
+ 'pkg/pkg.gyp:pkg_packages',
+ ],
+ },
],
}
« no previous file with comments | « no previous file | dart/pkg/args/test/args_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698