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

Unified Diff: dart/pkg/pkg.gyp

Issue 11359187: Allow tests to specify a package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
Index: dart/pkg/pkg.gyp
diff --git a/dart/pkg/pkg.gyp b/dart/pkg/pkg.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..b6a356f77ee341792d841d41717d8bbbc45a63b3
--- /dev/null
+++ b/dart/pkg/pkg.gyp
@@ -0,0 +1,44 @@
+# Copyright (c) 2012, 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'pkg_packages',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'make_pkg_packages',
+ 'inputs': [
+ 'args/lib',
+ 'fixnum/lib',
+ 'htmlescape/lib',
+ 'http/lib',
+ 'intl/lib',
+ 'logging/lib',
+ 'meta/lib',
+ 'unittest/lib',
+ 'webdriver/lib',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/packages/args',
+ '<(PRODUCT_DIR)/packages/fixnum',
+ '<(PRODUCT_DIR)/packages/htmlescape',
+ '<(PRODUCT_DIR)/packages/http',
+ '<(PRODUCT_DIR)/packages/intl',
+ '<(PRODUCT_DIR)/packages/logging',
+ '<(PRODUCT_DIR)/packages/meta',
+ '<(PRODUCT_DIR)/packages/unittest',
+ '<(PRODUCT_DIR)/packages/webdriver',
+ ],
+ 'action': [
+ 'python', '../tools/make_links.py',
+ '<(PRODUCT_DIR)/packages',
+ '<@(_inputs)',
+ ],
+ },
+ ],
+ }
+ ],
+}
« no previous file with comments | « dart/dart.gyp ('k') | dart/tests/html/url_test.dart » ('j') | dart/tests/html/url_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698