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

Side by Side Diff: pkg/pkg_files.gyp

Issue 810223002: Remove the http package from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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
« pkg/pkg.gyp ('K') | « pkg/pkg.gyp ('k') | sdk/bin/pub » ('j') | 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) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, 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 # Other targets depend on pkg files, but have to many inputs, which causes 7 # Other targets depend on pkg files, but have to many inputs, which causes
8 # issues on some platforms. 8 # issues on some platforms.
9 # This target lists all the files in pkg and third_party/pkg, 9 # This target lists all the files in pkg and third_party/pkg,
10 # and creates a single pkg_files.stamp 10 # and creates a single pkg_files.stamp
(...skipping 26 matching lines...) Expand all
37 'outputs': [ 37 'outputs': [
38 '<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp', 38 '<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp',
39 ], 39 ],
40 'action': [ 40 'action': [
41 'python', '../tools/create_timestamp_file.py', 41 'python', '../tools/create_timestamp_file.py',
42 '<@(_outputs)', 42 '<@(_outputs)',
43 ], 43 ],
44 }, 44 },
45 ], 45 ],
46 }, 46 },
47 {
48 'target_name': 'http_files_stamp',
49 'type': 'none',
50 'actions': [
51 {
52 'action_name': 'make_http_files_stamp',
53 'inputs': [
54 '../tools/create_timestamp_file.py',
55 '<!@(["python", "../tools/list_files.py", "\\.dart$", "http/lib"])',
56 ],
57 'outputs': [
58 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp',
59 ],
60 'action': [
61 'python', '../tools/create_timestamp_file.py',
62 '<@(_outputs)',
63 ],
64 },
65 ],
66 },
67 ], 47 ],
68 } 48 }
OLDNEW
« pkg/pkg.gyp ('K') | « pkg/pkg.gyp ('k') | sdk/bin/pub » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698