| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 ], | 348 ], |
| 349 }, | 349 }, |
| 350 ], | 350 ], |
| 351 }], | 351 }], |
| 352 ['OS=="android"', | 352 ['OS=="android"', |
| 353 { | 353 { |
| 354 'targets' : [ | 354 'targets' : [ |
| 355 { | 355 { |
| 356 'target_name' : 'policy_jni_headers', | 356 'target_name' : 'policy_jni_headers', |
| 357 'type': 'none', | 357 'type': 'none', |
| 358 'sources': [ | 358 'sources': [ |
| 359 'policy/android/java/src/org/chromium/policy/CombinedPolicyProvider.
java', | 359 'policy/android/java/src/org/chromium/policy/CombinedPolicyProvider.
java', |
| 360 'policy/android/java/src/org/chromium/policy/PolicyConverter.java', | 360 'policy/android/java/src/org/chromium/policy/PolicyConverter.java', |
| 361 ], | 361 ], |
| 362 'variables': { | 362 'variables': { |
| 363 'jni_gen_package': 'policy', | 363 'jni_gen_package': 'policy', |
| 364 }, | 364 }, |
| 365 'includes': [ '../build/jni_generator.gypi' ], | 365 'includes': [ '../build/jni_generator.gypi' ], |
| 366 }, | 366 }, |
| 367 ], | 367 ], |
| 368 }], | 368 }], |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 'target_name': 'policy_java', | 415 'target_name': 'policy_java', |
| 416 'type': 'none', | 416 'type': 'none', |
| 417 'dependencies': [ | 417 'dependencies': [ |
| 418 '../base/base.gyp:base_java', | 418 '../base/base.gyp:base_java', |
| 419 ], | 419 ], |
| 420 'variables': { | 420 'variables': { |
| 421 'java_in_dir': 'policy/android/java', | 421 'java_in_dir': 'policy/android/java', |
| 422 }, | 422 }, |
| 423 'includes': [ '../build/java.gypi' ], | 423 'includes': [ '../build/java.gypi' ], |
| 424 }, | 424 }, |
| 425 { |
| 426 # GN: //components/policy/android:policy_java_test_support |
| 427 'target_name': 'policy_java_test_support', |
| 428 'type': 'none', |
| 429 'dependencies': [ |
| 430 '../base/base.gyp:base_java', |
| 431 '../base/base.gyp:base_java_test_support', |
| 432 'policy_java' |
| 433 ], |
| 434 'variables': { |
| 435 'java_in_dir': 'policy/android/javatests', |
| 436 }, |
| 437 'includes': [ '../build/java.gypi' ], |
| 438 }, |
| 425 ], | 439 ], |
| 426 }], | 440 }], |
| 427 ['OS=="win" and target_arch=="ia32" and configuration_policy==1', { | 441 ['OS=="win" and target_arch=="ia32" and configuration_policy==1', { |
| 428 'targets': [ | 442 'targets': [ |
| 429 { | 443 { |
| 430 'target_name': 'policy_win64', | 444 'target_name': 'policy_win64', |
| 431 'type': 'static_library', | 445 'type': 'static_library', |
| 432 'hard_dependency': 1, | 446 'hard_dependency': 1, |
| 433 'sources': [ | 447 'sources': [ |
| 434 '<(policy_constant_header_path)', | 448 '<(policy_constant_header_path)', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 'message': | 568 'message': |
| 555 'Copy the Localizable.strings files to the manifest bundle', | 569 'Copy the Localizable.strings files to the manifest bundle', |
| 556 'process_outputs_as_mac_bundle_resources': 1, | 570 'process_outputs_as_mac_bundle_resources': 1, |
| 557 }, | 571 }, |
| 558 ], | 572 ], |
| 559 }, | 573 }, |
| 560 ], | 574 ], |
| 561 }], | 575 }], |
| 562 ], | 576 ], |
| 563 } | 577 } |
| OLD | NEW |