| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 'target_name': 'policy_java', | 420 'target_name': 'policy_java', |
| 421 'type': 'none', | 421 'type': 'none', |
| 422 'dependencies': [ | 422 'dependencies': [ |
| 423 '../base/base.gyp:base_java', | 423 '../base/base.gyp:base_java', |
| 424 ], | 424 ], |
| 425 'variables': { | 425 'variables': { |
| 426 'java_in_dir': 'policy/android/java', | 426 'java_in_dir': 'policy/android/java', |
| 427 }, | 427 }, |
| 428 'includes': [ '../build/java.gypi' ], | 428 'includes': [ '../build/java.gypi' ], |
| 429 }, | 429 }, |
| 430 { |
| 431 # GN: //components/policy/android:policy_java_test_support |
| 432 'target_name': 'policy_java_test_support', |
| 433 'type': 'none', |
| 434 'dependencies': [ |
| 435 '../base/base.gyp:base_java', |
| 436 '../base/base.gyp:base_java_test_support', |
| 437 'policy_java' |
| 438 ], |
| 439 'variables': { |
| 440 'java_in_dir': 'policy/android/javatests', |
| 441 }, |
| 442 'includes': [ '../build/java.gypi' ], |
| 443 }, |
| 430 ], | 444 ], |
| 431 }], | 445 }], |
| 432 ['OS=="win" and target_arch=="ia32" and configuration_policy==1', { | 446 ['OS=="win" and target_arch=="ia32" and configuration_policy==1', { |
| 433 'targets': [ | 447 'targets': [ |
| 434 { | 448 { |
| 435 'target_name': 'policy_win64', | 449 'target_name': 'policy_win64', |
| 436 'type': 'static_library', | 450 'type': 'static_library', |
| 437 'hard_dependency': 1, | 451 'hard_dependency': 1, |
| 438 'sources': [ | 452 'sources': [ |
| 439 '<(policy_constant_header_path)', | 453 '<(policy_constant_header_path)', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 'message': | 574 'message': |
| 561 'Copy the Localizable.strings files to the manifest bundle', | 575 'Copy the Localizable.strings files to the manifest bundle', |
| 562 'process_outputs_as_mac_bundle_resources': 1, | 576 'process_outputs_as_mac_bundle_resources': 1, |
| 563 }, | 577 }, |
| 564 ], | 578 ], |
| 565 }, | 579 }, |
| 566 ], | 580 ], |
| 567 }], | 581 }], |
| 568 ], | 582 ], |
| 569 } | 583 } |
| OLD | NEW |