Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be | 
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. | 
| 4 | 4 | 
| 5 # This is all.gyp file for Android to prevent breakage in Android and other | 5 # This is all.gyp file for Android to prevent breakage in Android and other | 
| 6 # platform; It will be churning a lot in the short term and eventually be merged | 6 # platform; It will be churning a lot in the short term and eventually be merged | 
| 7 # into all.gyp. | 7 # into all.gyp. | 
| 8 | 8 | 
| 9 { | 9 { | 
| 10 'variables': { | 10 'variables': { | 
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 108 }, | 108 }, | 
| 109 { | 109 { | 
| 110 # In-progress targets that are expected to fail and are NOT run | 110 # In-progress targets that are expected to fail and are NOT run | 
| 111 # on any bot. | 111 # on any bot. | 
| 112 'target_name': 'android_in_progress', | 112 'target_name': 'android_in_progress', | 
| 113 'type': 'none', | 113 'type': 'none', | 
| 114 'dependencies': [ | 114 'dependencies': [ | 
| 115 '../content/content.gyp:content_browsertests', | 115 '../content/content.gyp:content_browsertests', | 
| 116 ], | 116 ], | 
| 117 }, | 117 }, | 
| 118 { | |
| 119 # Target for creating common output build directories. | |
| 
 
cjhopman
2012/09/18 21:40:20
Nit: Line breaks in this comment appear to be at ~
 
 | |
| 120 # Creating output dirs beforehand ensures that build | |
| 121 # scripts can assume these folders to exist and there | |
| 122 # are no race conditions resulting from build scripts | |
| 123 # trying to create these directories. | |
| 124 # The build/java.gypi target depends on this target. | |
| 125 'target_name': 'build_output_dirs', | |
| 126 'type': 'none', | |
| 127 'actions': [ | |
| 128 { | |
| 129 'action_name': 'create_java_output_dirs', | |
| 130 'variables' : { | |
| 131 'output_dirs' : [ | |
| 132 '<(PRODUCT_DIR)/apks', | |
| 133 '<(PRODUCT_DIR)/lib.java', | |
| 134 '<(PRODUCT_DIR)/test.lib.java', | |
| 135 ] | |
| 136 }, | |
| 137 'inputs' : [], | |
| 138 'outputs': [ | |
| 139 '<@(output_dirs)' | |
| 140 ], | |
| 141 'action': [ | |
| 142 'mkdir', | |
| 143 '-p', | |
| 144 '<@(output_dirs)', | |
| 145 ], | |
| 146 }, | |
| 147 ], | |
| 148 }, # build_output_dirs | |
| 118 ], # targets | 149 ], # targets | 
| 119 } | 150 } | 
| OLD | NEW |