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

Side by Side Diff: utils/pub/pub.gyp

Issue 247273003: Fix mac gyp generation by moving target to seperate file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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 | « pkg/pkg_files.gyp ('k') | 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) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, 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': 'pub', 8 'target_name': 'pub',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 '../../runtime/dart-runtime.gyp:dart', 11 '../../runtime/dart-runtime.gyp:dart',
12 '../../pkg/pkg.gyp:pkg_packages', 12 '../../pkg/pkg.gyp:pkg_packages',
13 '../../pkg/pkg.gyp:pkg_files_stamp', 13 '../../pkg/pkg_files.gyp:pkg_files_stamp',
14 '../../utils/compiler/compiler.gyp:dart2js_files_stamp', 14 '../../utils/compiler/compiler.gyp:dart2js_files_stamp',
15 'pub_files_stamp' 15 'pub_files_stamp'
16 ], 16 ],
17 'actions': [ 17 'actions': [
18 { 18 {
19 'action_name': 'generate_pub_snapshot', 19 'action_name': 'generate_pub_snapshot',
20 'inputs': [ 20 'inputs': [
21 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 21 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
22 '../../sdk/lib/_internal/libraries.dart', 22 '../../sdk/lib/_internal/libraries.dart',
23 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp', 23 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'python', '../../tools/create_timestamp_file.py', 58 'python', '../../tools/create_timestamp_file.py',
59 '<@(_outputs)', 59 '<@(_outputs)',
60 ], 60 ],
61 }, 61 },
62 ], 62 ],
63 } 63 }
64 64
65 65
66 ], 66 ],
67 } 67 }
OLDNEW
« no previous file with comments | « pkg/pkg_files.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698