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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. |
| 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , | 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , |
| 10 }, | 10 }, |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 459 'top_controls_state_java', | 459 'top_controls_state_java', |
| 460 'screen_orientation_values_java', | 460 'screen_orientation_values_java', |
| 461 'accessibility_java', | 461 'accessibility_java', |
| 462 ], | 462 ], |
| 463 'variables': { | 463 'variables': { |
| 464 'java_in_dir': '../content/public/android/java', | 464 'java_in_dir': '../content/public/android/java', |
| 465 'has_java_resources': 1, | 465 'has_java_resources': 1, |
| 466 'R_package': 'org.chromium.content', | 466 'R_package': 'org.chromium.content', |
| 467 'R_package_relpath': 'org/chromium/content', | 467 'R_package_relpath': 'org/chromium/content', |
| 468 }, | 468 }, |
| 469 # TODO(sgurun) remove this when M is public. crbug/512264. | |
| 470 'conditions': [ | |
| 471 ['android_sdk_version != "M"', { | |
|
Ted C
2015/07/21 00:35:48
although temporary, it really shouldn't be in cont
sgurun-gerrit only
2015/07/21 20:22:15
Done.
| |
| 472 'variables': { | |
| 473 'additional_src_dirs' : ['../content/public/android/frameworks' ], | |
| 474 'jar_excluded_classes' : [ '*/ViewStructure.class'], | |
| 475 }, | |
| 476 }], | |
| 477 ], | |
| 469 'includes': [ '../build/java.gypi' ], | 478 'includes': [ '../build/java.gypi' ], |
| 470 }, | 479 }, |
| 471 { | 480 { |
| 472 'target_name': 'console_message_level_java', | 481 'target_name': 'console_message_level_java', |
| 473 'type': 'none', | 482 'type': 'none', |
| 474 'variables': { | 483 'variables': { |
| 475 'source_file': 'public/common/console_message_level.h', | 484 'source_file': 'public/common/console_message_level.h', |
| 476 }, | 485 }, |
| 477 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 486 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 478 }, | 487 }, |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 633 ], | 642 ], |
| 634 }, | 643 }, |
| 635 ], | 644 ], |
| 636 }], | 645 }], |
| 637 ], | 646 ], |
| 638 }, | 647 }, |
| 639 ], | 648 ], |
| 640 }], # OS == "android" | 649 }], # OS == "android" |
| 641 ], | 650 ], |
| 642 } | 651 } |
| OLD | NEW |