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 12 matching lines...) Expand all Loading... | |
23 ], | 23 ], |
24 }], | 24 }], |
25 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. | 25 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. |
26 ['OS=="win" and target_arch=="x64"', { | 26 ['OS=="win" and target_arch=="x64"', { |
27 'msvs_settings': { | 27 'msvs_settings': { |
28 'VCCLCompilerTool': { | 28 'VCCLCompilerTool': { |
29 'AdditionalOptions': ['/bigobj'], | 29 'AdditionalOptions': ['/bigobj'], |
30 }, | 30 }, |
31 }, | 31 }, |
32 }], | 32 }], |
33 | 33 |
benm (inactive)
2013/03/11 17:23:29
nit: remove \n?
Torne
2013/03/11 17:31:11
Done.
| |
34 ], | 34 ], |
35 }, | 35 }, |
36 'conditions': [ | 36 'conditions': [ |
37 ['inside_chromium_build==1', { | 37 ['inside_chromium_build==1', { |
38 'includes': [ | 38 'includes': [ |
39 'content_tests.gypi', | 39 'content_tests.gypi', |
40 ], | 40 ], |
41 }], | 41 }], |
42 ['OS != "ios"', { | 42 ['OS != "ios"', { |
43 'includes': [ | 43 'includes': [ |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
315 'result_codes_java', | 315 'result_codes_java', |
316 ], | 316 ], |
317 'variables': { | 317 'variables': { |
318 'java_in_dir': '../content/public/android/java', | 318 'java_in_dir': '../content/public/android/java', |
319 'has_java_resources': 1, | 319 'has_java_resources': 1, |
320 'R_package': 'org.chromium.content', | 320 'R_package': 'org.chromium.content', |
321 'R_package_relpath': 'org/chromium/content', | 321 'R_package_relpath': 'org/chromium/content', |
322 'java_strings_grd': 'android_content_strings.grd', | 322 'java_strings_grd': 'android_content_strings.grd', |
323 }, | 323 }, |
324 'conditions': [ | 324 'conditions': [ |
325 ['android_build_type == 0', { | 325 ['android_webview_build == 0', { |
326 'dependencies': [ | 326 'dependencies': [ |
327 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 327 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
328 '../third_party/guava/guava.gyp:guava_javalib', | 328 '../third_party/guava/guava.gyp:guava_javalib', |
329 ], | 329 ], |
330 }], | 330 }], |
331 ], | 331 ], |
332 'includes': [ '../build/java.gypi' ], | 332 'includes': [ '../build/java.gypi' ], |
333 }, | 333 }, |
334 { | 334 { |
335 'target_name': 'page_transition_types_java', | 335 'target_name': 'page_transition_types_java', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
398 'include_dirs': [ | 398 'include_dirs': [ |
399 '<(SHARED_INTERMEDIATE_DIR)/content', | 399 '<(SHARED_INTERMEDIATE_DIR)/content', |
400 ], | 400 ], |
401 }, | 401 }, |
402 'includes': [ 'content_jni.gypi' ], | 402 'includes': [ 'content_jni.gypi' ], |
403 }, | 403 }, |
404 ], | 404 ], |
405 }], # OS == "android" | 405 }], # OS == "android" |
406 ], | 406 ], |
407 } | 407 } |
OLD | NEW |