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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 {
6 'targets': [
7 {
8 'target_name': 'pkg_packages',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'make_pkg_packages',
13 'inputs': [
14 'args/lib',
15 'fixnum/lib',
16 'htmlescape/lib',
17 'http/lib',
18 'intl/lib',
19 'logging/lib',
20 'meta/lib',
21 'unittest/lib',
22 'webdriver/lib',
23 ],
24 'outputs': [
25 '<(PRODUCT_DIR)/packages/args',
26 '<(PRODUCT_DIR)/packages/fixnum',
27 '<(PRODUCT_DIR)/packages/htmlescape',
28 '<(PRODUCT_DIR)/packages/http',
29 '<(PRODUCT_DIR)/packages/intl',
30 '<(PRODUCT_DIR)/packages/logging',
31 '<(PRODUCT_DIR)/packages/meta',
32 '<(PRODUCT_DIR)/packages/unittest',
33 '<(PRODUCT_DIR)/packages/webdriver',
34 ],
35 'action': [
36 'python', '../tools/make_links.py',
37 '<(PRODUCT_DIR)/packages',
38 '<@(_inputs)',
39 ],
40 },
41 ],
42 }
43 ],
44 }
OLDNEW
« 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