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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', | 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
195 'dependencies': ['content'], | 195 'dependencies': ['content'], |
196 }, | 196 }, |
197 ], | 197 ], |
198 }, | 198 }, |
199 ], | 199 ], |
200 ['OS == "android"', { | 200 ['OS == "android"', { |
201 'targets': [ | 201 'targets': [ |
202 { | 202 { |
203 'target_name': 'content_java', | 203 'target_name': 'content_java', |
204 'type': 'none', | 204 'type': 'none', |
205 'dependencies': ['../base/base.gyp:base_java'], | |
205 'variables': { | 206 'variables': { |
206 'package_name': 'content', | 207 'package_name': 'content', |
207 'java_in_dir': '../content/public/android/java', | 208 'java_in_dir': '../content/public/android/java', |
208 }, | 209 }, |
209 'includes': [ '../build/java.gypi' ], | 210 'includes': [ '../build/java.gypi' ], |
210 }, | 211 }, |
212 { | |
213 'target_name': 'content_jni_headers', | |
214 'type': 'none', | |
215 'includes': [ 'content_jni.gypi' ], | |
Yaron
2012/05/09 01:01:42
Wheres' this file?
John Grabowski
2012/05/09 17:18:15
Oops! Added
| |
216 }, | |
211 ], | 217 ], |
212 }], # OS == "android" | 218 }], # OS == "android" |
213 ], | 219 ], |
214 } | 220 } |
OLD | NEW |