| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'includes': [ | 6 'includes': [ |
| 7 # Included to get 'mac_bundle_id' and other variables. | 7 # Included to get 'mac_bundle_id' and other variables. |
| 8 '../build/chrome_settings.gypi', | 8 '../build/chrome_settings.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 'type': 'none', | 362 'type': 'none', |
| 363 'sources': [ | 363 'sources': [ |
| 364 'policy/android/java/src/org/chromium/policy/CombinedPolicyProvider.
java', | 364 'policy/android/java/src/org/chromium/policy/CombinedPolicyProvider.
java', |
| 365 'policy/android/java/src/org/chromium/policy/PolicyConverter.java', | 365 'policy/android/java/src/org/chromium/policy/PolicyConverter.java', |
| 366 ], | 366 ], |
| 367 'variables': { | 367 'variables': { |
| 368 'jni_gen_package': 'policy', | 368 'jni_gen_package': 'policy', |
| 369 }, | 369 }, |
| 370 'includes': [ '../build/jni_generator.gypi' ], | 370 'includes': [ '../build/jni_generator.gypi' ], |
| 371 }, | 371 }, |
| 372 { |
| 373 'target_name': 'components_policy_junit_tests', |
| 374 'type': 'none', |
| 375 'dependencies': [ |
| 376 '../testing/android/junit/junit_test.gyp:junit_test_support', |
| 377 ], |
| 378 'variables': { |
| 379 'main_class': 'org.chromium.testing.local.JunitTestMain', |
| 380 'src_paths': [ |
| 381 '../testing/android/junit/DummyTest.java', |
| 382 ], |
| 383 'wrapper_script_name': 'helper/<(_target_name)', |
| 384 }, |
| 385 'includes': [ '../build/host_jar.gypi' ], |
| 386 }, |
| 372 ], | 387 ], |
| 373 }], | 388 }], |
| 374 ['OS=="android" and configuration_policy==1', { | 389 ['OS=="android" and configuration_policy==1', { |
| 375 'targets': [ | 390 'targets': [ |
| 376 { | 391 { |
| 377 'target_name': 'app_restrictions_resources', | 392 'target_name': 'app_restrictions_resources', |
| 378 'type': 'none', | 393 'type': 'none', |
| 379 'variables': { | 394 'variables': { |
| 380 'resources_zip': '<(PRODUCT_DIR)/res.java/<(_target_name).zip', | 395 'resources_zip': '<(PRODUCT_DIR)/res.java/<(_target_name).zip', |
| 381 'input_resources_dir': | 396 'input_resources_dir': |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 'message': | 589 'message': |
| 575 'Copy the Localizable.strings files to the manifest bundle', | 590 'Copy the Localizable.strings files to the manifest bundle', |
| 576 'process_outputs_as_mac_bundle_resources': 1, | 591 'process_outputs_as_mac_bundle_resources': 1, |
| 577 }, | 592 }, |
| 578 ], | 593 ], |
| 579 }, | 594 }, |
| 580 ], | 595 ], |
| 581 }], | 596 }], |
| 582 ], | 597 ], |
| 583 } | 598 } |
| OLD | NEW |