Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: components/policy.gypi

Issue 1387633002: Update instrumentation tests to use PreTestHooks for policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, replace bundle manipulation with a simple variable Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698