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 'conditions': [ | 9 'conditions': [ |
10 ['inside_chromium_build==0', { | 10 ['inside_chromium_build==0', { |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 'common_aidl', | 287 'common_aidl', |
288 'content_common', | 288 'content_common', |
289 'page_transition_types_java', | 289 'page_transition_types_java', |
290 ], | 290 ], |
291 'variables': { | 291 'variables': { |
292 'package_name': 'content', | 292 'package_name': 'content', |
293 'java_in_dir': '../content/public/android/java', | 293 'java_in_dir': '../content/public/android/java', |
294 'has_java_resources': 1, | 294 'has_java_resources': 1, |
295 'R_package': 'org.chromium.content', | 295 'R_package': 'org.chromium.content', |
296 'R_package_relpath': 'org/chromium/content', | 296 'R_package_relpath': 'org/chromium/content', |
| 297 'java_strings_grd': 'android_content_strings.grd', |
297 }, | 298 }, |
298 'conditions': [ | 299 'conditions': [ |
299 ['android_build_type == 0', { | 300 ['android_build_type == 0', { |
300 'dependencies': [ | 301 'dependencies': [ |
301 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 302 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
302 '../third_party/guava/guava.gyp:guava_javalib', | 303 '../third_party/guava/guava.gyp:guava_javalib', |
303 ], | 304 ], |
304 }], | 305 }], |
305 ], | 306 ], |
306 'includes': [ '../build/java.gypi' ], | 307 'includes': [ '../build/java.gypi' ], |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 'include_dirs': [ | 349 'include_dirs': [ |
349 '<(SHARED_INTERMEDIATE_DIR)/content', | 350 '<(SHARED_INTERMEDIATE_DIR)/content', |
350 ], | 351 ], |
351 }, | 352 }, |
352 'includes': [ 'content_jni.gypi' ], | 353 'includes': [ 'content_jni.gypi' ], |
353 }, | 354 }, |
354 ], | 355 ], |
355 }], # OS == "android" | 356 }], # OS == "android" |
356 ], | 357 ], |
357 } | 358 } |
OLD | NEW |