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

Side by Side Diff: pkg/pkg.gyp

Issue 451503002: Add a GYP dependency from pub_packages onto pkg_files:http_files_stamp. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« 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) 2012, the Dart project authors. Please see the AUTHORS file 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'pkg_packages', 8 'target_name': 'pkg_packages',
9 'type': 'none', 9 'type': 'none',
10 'actions': [ 10 'actions': [
(...skipping 23 matching lines...) Expand all
34 ], 34 ],
35 }, 35 },
36 ], 36 ],
37 }, 37 },
38 { 38 {
39 'target_name': 'pub_packages', 39 'target_name': 'pub_packages',
40 'type': 'none', 40 'type': 'none',
41 'actions': [ 41 'actions': [
42 { 42 {
43 'action_name': 'remove_html_imports', 43 'action_name': 'remove_html_imports',
44 'dependencies': [
45 'pkg_files.gyp:http_files_stamp',
ahe 2014/08/07 09:55:35 Why do you have two gyp files in this directory?
46 ],
44 'inputs': [ 47 'inputs': [
45 '../tools/remove_html_imports.py', 48 '../tools/remove_html_imports.py',
46 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp', 49 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp',
47 ], 50 ],
48 'outputs': [ 51 'outputs': [
49 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', 52 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart',
50 ], 53 ],
51 'action': [ 54 'action': [
52 'python', '../tools/remove_html_imports.py', 55 'python', '../tools/remove_html_imports.py',
53 'http/lib', 56 'http/lib',
(...skipping 25 matching lines...) Expand all
79 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', 82 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp',
80 '<(PRODUCT_DIR)/pub_packages', 83 '<(PRODUCT_DIR)/pub_packages',
81 '<@(_inputs)', 84 '<@(_inputs)',
82 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', 85 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib',
83 ], 86 ],
84 }, 87 },
85 ], 88 ],
86 } 89 }
87 ], 90 ],
88 } 91 }
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