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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
101 }, | 101 }, |
102 { | 102 { |
103 # In-progress targets that are expected to fail and are NOT run | 103 # In-progress targets that are expected to fail and are NOT run |
104 # on any bot. | 104 # on any bot. |
105 'target_name': 'android_in_progress', | 105 'target_name': 'android_in_progress', |
106 'type': 'none', | 106 'type': 'none', |
107 'dependencies': [ | 107 'dependencies': [ |
108 '../content/content.gyp:content_browsertests', | 108 '../content/content.gyp:content_browsertests', |
109 ], | 109 ], |
110 }, | 110 }, |
111 { | |
112 # Target for creating common output build directories. | |
113 # Creating output dirs beforehand ensures that build | |
114 # scripts can assume these folders to exist and there | |
115 # are no race conditions resulting from build scripts | |
116 # trying to create these directories. | |
117 # The build/java.gypi target depends on this target. | |
118 'target_name': 'build_output_dirs', | |
119 'type': 'none', | |
120 'actions': [ | |
121 { | |
122 'action_name': 'create_java_output_dirs', | |
123 'variables' : { | |
124 'output_dirs' : [ | |
125 '<(PRODUCT_DIR)/apks', | |
126 '<(PRODUCT_DIR)/lib.java', | |
Yaron
2012/09/10 19:58:10
Nit: indentation is off throughout this target.
| |
127 '<(PRODUCT_DIR)/test.lib.java', | |
128 ] | |
129 }, | |
130 'inputs' : [ | |
131 '<(PRODUCT_DIR)' | |
132 ], | |
133 'outputs': [ | |
134 '<@(output_dirs)' | |
135 ], | |
136 'action': [ | |
137 'mkdir', | |
138 '-p', | |
139 '<@(output_dirs)', | |
140 ], | |
141 }, | |
142 ], | |
143 }, # build_output_dirs | |
111 ], # targets | 144 ], # targets |
112 } | 145 } |
OLD | NEW |