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

Side by Side Diff: compiler/dartium.gyp

Issue 11973012: Rev the version of apache ant in third_party to 1.8.4. This will fix an issue with (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | « compiler/dart_analyzer.xml ('k') | editor/build/build.py » ('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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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
ricow1 2013/01/16 19:05:33 why is this file called dartium.gyp?
devoncarew 2013/01/16 19:09:16 I am wholly unfamiliar with this file; I'm guessin
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 # TODO(vsm): Remove this file and use dart.gyp once that can be pulled 5 # TODO(vsm): Remove this file and use dart.gyp once that can be pulled
6 # into the dartium build. 6 # into the dartium build.
7 { 7 {
8 'includes': [ 8 'includes': [
9 # TODO(iposva): Move shared gyp setup to a shared location. 9 # TODO(iposva): Move shared gyp setup to a shared location.
10 '../tools/gyp/xcode.gypi', 10 '../tools/gyp/xcode.gypi',
11 # TODO(mmendez): Add the appropriate gypi includes here. 11 # TODO(mmendez): Add the appropriate gypi includes here.
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'dartc', 15 'target_name': 'dartc',
16 'type': 'none', 16 'type': 'none',
17 'actions': [ 17 'actions': [
18 { 18 {
19 'action_name': 'Build and test', 19 'action_name': 'Build and test',
20 'inputs': [ 20 'inputs': [
21 ], 21 ],
22 'outputs': [ 22 'outputs': [
23 'dummy_target', 23 'dummy_target',
24 ], 24 ],
25 'action' : [ 25 'action' : [
26 '../third_party/apache_ant/v1_7_1/bin/ant', 26 '../third_party/apache_ant/1.8.4/bin/ant',
27 '-Dbuild.dir=<(PRODUCT_DIR)/ant-out', 27 '-Dbuild.dir=<(PRODUCT_DIR)/ant-out',
28 'clean', 28 'clean',
29 'dist', 29 'dist',
30 ], 30 ],
31 'message': 'Building dartc.', 31 'message': 'Building dartc.',
32 }, 32 },
33 ], 33 ],
34 }, 34 },
35 { 35 {
36 # GYP won't generate a catch-all target if there's only one target. 36 # GYP won't generate a catch-all target if there's only one target.
37 'target_name': 'dummy', 37 'target_name': 'dummy',
38 'type': 'none', 38 'type': 'none',
39 }, 39 },
40 ], 40 ],
41 } 41 }
OLDNEW
« no previous file with comments | « compiler/dart_analyzer.xml ('k') | editor/build/build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698