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

Side by Side Diff: components/components_tests.gyp

Issue 1334253002: Fix running gyp with configuration_policy=0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: History rewrite Created 5 years, 3 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
« no previous file with comments | « chrome/chrome.gyp ('k') | components/policy/core/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 'components.gyp:web_modal', 1069 'components.gyp:web_modal',
1070 'components.gyp:web_modal_test_support', 1070 'components.gyp:web_modal_test_support',
1071 'scheduler/scheduler.gyp:scheduler', 1071 'scheduler/scheduler.gyp:scheduler',
1072 'test_runner/test_runner.gyp:test_runner', 1072 'test_runner/test_runner.gyp:test_runner',
1073 'webcrypto/webcrypto.gyp:webcrypto', 1073 'webcrypto/webcrypto.gyp:webcrypto',
1074 '../third_party/re2/re2.gyp:re2', 1074 '../third_party/re2/re2.gyp:re2',
1075 ], 1075 ],
1076 'conditions': [ 1076 'conditions': [
1077 ['OS=="android"', { 1077 ['OS=="android"', {
1078 'dependencies': [ 1078 'dependencies': [
1079 '../build/android/ndk.gyp:cpu_features',
1080 ],
1081 }],
1082 ['OS=="android" and configuration_policy == 1', {
1083 'dependencies': [
1079 'components.gyp:policy_java', 1084 'components.gyp:policy_java',
1080 '../build/android/ndk.gyp:cpu_features',
1081 ], 1085 ],
1082 }], 1086 }],
1083 ['use_openssl==1', { 1087 ['use_openssl==1', {
1084 'dependencies': [ 1088 'dependencies': [
1085 '../third_party/boringssl/boringssl.gyp:boringssl', 1089 '../third_party/boringssl/boringssl.gyp:boringssl',
1086 ], 1090 ],
1087 }, { 1091 }, {
1088 'conditions': [ 1092 'conditions': [
1089 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "andro id"', { 1093 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "andro id"', {
1090 'dependencies': [ 1094 'dependencies': [
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 'variables': { 1659 'variables': {
1656 'test_suite_name': 'components_unittests', 1660 'test_suite_name': 'components_unittests',
1657 }, 1661 },
1658 'includes': [ '../build/apk_test.gypi' ], 1662 'includes': [ '../build/apk_test.gypi' ],
1659 }, 1663 },
1660 { 1664 {
1661 'target_name': 'components_junit_tests', 1665 'target_name': 'components_junit_tests',
1662 'type': 'none', 1666 'type': 'none',
1663 'dependencies': [ 1667 'dependencies': [
1664 'components.gyp:invalidation_java', 1668 'components.gyp:invalidation_java',
1665 'components.gyp:policy_java',
1666 '../base/base.gyp:base_java', 1669 '../base/base.gyp:base_java',
1667 '../base/base.gyp:base_java_test_support', 1670 '../base/base.gyp:base_java_test_support',
1668 '../testing/android/junit/junit_test.gyp:junit_test_support', 1671 '../testing/android/junit/junit_test.gyp:junit_test_support',
1669 ], 1672 ],
1673 'conditions': [
1674 ['configuration_policy == 1', {
1675 'dependencies': [
1676 'components.gyp:policy_java',
1677 ],
1678 }],
1679 ],
1670 'variables': { 1680 'variables': {
1671 'main_class': 'org.chromium.testing.local.JunitTestMain', 1681 'main_class': 'org.chromium.testing.local.JunitTestMain',
1672 'src_paths': [ 1682 'src_paths': [
1673 'invalidation/impl/android/junit/', 1683 'invalidation/impl/android/junit/',
1674 'policy/android/junit/' 1684 'policy/android/junit/'
1675 ], 1685 ],
1676 }, 1686 },
1677 'includes': [ '../build/host_jar.gypi' ], 1687 'includes': [ '../build/host_jar.gypi' ],
1678 }, 1688 },
1679 ], 1689 ],
1680 }], 1690 }],
1681 ], 1691 ],
1682 } 1692 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | components/policy/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698