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

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

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address cshapiro's review comments, pass 2 Created 8 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
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 'variables' : { 6 'variables' : {
7 'script_suffix%': '', 7 'script_suffix%': '',
8 }, 8 },
9 'conditions' : [ 9 'conditions' : [
10 ['OS=="win"', { 10 ['OS=="win"', {
(...skipping 29 matching lines...) Expand all
40 ], 40 ],
41 'action': [ 41 'action': [
42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
43 'apidoc.dart', 43 'apidoc.dart',
44 '--out=<(PRODUCT_DIR)/api_docs', 44 '--out=<(PRODUCT_DIR)/api_docs',
45 '--mode=static', 45 '--mode=static',
46 ], 46 ],
47 'message': 'Running apidoc: <(_action)', 47 'message': 'Running apidoc: <(_action)',
48 }, 48 },
49 ], 49 ],
50 'conditions': [
Emily Fortuna 2012/08/08 01:28:37 You're almost certainly much more of a gyp expert
jackpal 2012/08/08 23:06:45 It's complicated. Here's my understanding of this
51 ['dart_want_separate_host_toolset==1', {
52 'toolsets': ['host'],
53 }, {
54 'toolsets': ['target'],
55 }]
56 ],
50 } 57 }
51 ], 58 ],
52 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698