Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 |
| 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 # These variables are used in the creation of the .vcproj file on | 7 # These variables are used in the creation of the .vcproj file on |
| 8 # Windows. | 8 # Windows. |
| 9 'cygwin_dir': 'third_party/cygwin', | 9 'cygwin_dir': 'third_party/cygwin', |
| 10 }, | 10 }, |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'compiler', | 13 'target_name': 'compiler', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'compiler/dart-compiler.gyp:dartc', | 16 'compiler/dart-compiler.gyp:dartc', |
| 17 ], | 17 ], |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 98 'outputs': [ | 98 'outputs': [ |
| 99 '<(PRODUCT_DIR)/upload_sdk', | 99 '<(PRODUCT_DIR)/upload_sdk', |
| 100 ], | 100 ], |
| 101 'action': [ | 101 'action': [ |
| 102 'python', | 102 'python', |
| 103 'tools/upload_sdk.py', | 103 'tools/upload_sdk.py', |
| 104 '<(PRODUCT_DIR)/dart-sdk' | 104 '<(PRODUCT_DIR)/dart-sdk' |
| 105 ], | 105 ], |
| 106 }, | 106 }, |
| 107 ], | 107 ], |
| 108 }, | |
| 109 { | |
| 110 'target_name': 'api_docs', | |
|
ahe
2012/03/16 08:07:40
I think this target belongs in its own GYP file, f
Bob Nystrom
2012/03/28 20:19:36
Done.
| |
| 111 'type': 'none', | |
| 112 'dependencies': [ | |
| 113 'frog', 'runtime', | |
| 114 ], | |
| 115 'actions': [ | |
| 116 { | |
| 117 'action_name': 'run_apidoc', | |
| 118 'inputs': [ | |
| 119 'utils/apidoc', | |
|
ahe
2012/03/16 08:07:40
No directory dependencies, please. Consider:
* If
Bob Nystrom
2012/03/28 20:19:36
Done, but I'm having some problems. I wrote a "lis
| |
| 120 'lib/dartdoc', | |
| 121 ], | |
| 122 'outputs': [ | |
| 123 '<(PRODUCT_DIR)/api_docs', | |
| 124 ], | |
| 125 'action': [ | |
| 126 'utils/apidoc/apidoc', | |
|
ahe
2012/03/16 08:07:40
This needs to be installed in PRODUCT_DIR as a rea
Bob Nystrom
2012/03/28 20:19:36
Done. Just invoking a dart script now.
| |
| 127 '--out=<(PRODUCT_DIR)/api_docs' | |
| 128 ], | |
| 129 }, | |
| 130 ], | |
| 108 } | 131 } |
| 109 ], | 132 ], |
| 110 } | 133 } |
| OLD | NEW |