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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 355233002: Fix build when ENABLE_MANAGED_USERS is not defined (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits, minor refactoring Created 6 years, 5 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 'includes': [ 5 'includes': [
6 'js_unittest_vars.gypi', 6 'js_unittest_vars.gypi',
7 ], 7 ],
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'interactive_ui_tests', 10 'target_name': 'interactive_ui_tests',
(...skipping 1989 matching lines...) Expand 10 before | Expand all | Expand 10 after
2000 '../content/content_shell_and_tests.gyp:copy_npapi_test_plugin', 2000 '../content/content_shell_and_tests.gyp:copy_npapi_test_plugin',
2001 ], 2001 ],
2002 }], 2002 }],
2003 ['enable_app_list==0', { 2003 ['enable_app_list==0', {
2004 'sources/': [ 2004 'sources/': [
2005 ['exclude', '^browser/apps/drive/'], 2005 ['exclude', '^browser/apps/drive/'],
2006 ['exclude', '^browser/ui/app_list/'], 2006 ['exclude', '^browser/ui/app_list/'],
2007 ['exclude', '^browser/ui/webui/app_list/'], 2007 ['exclude', '^browser/ui/webui/app_list/'],
2008 ], 2008 ],
2009 }], 2009 }],
2010 ['enable_managed_users==0', {
2011 'sources/': [
2012 ['exclude', '^browser/supervised_user/'],
2013 ],
2014 }],
2010 ['enable_pepper_cdms==1', { 2015 ['enable_pepper_cdms==1', {
2011 'dependencies': [ 2016 'dependencies': [
2012 # Runtime dependencies. 2017 # Runtime dependencies.
2013 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', 2018 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter',
2014 '../media/media.gyp:clearkeycdmadapter', 2019 '../media/media.gyp:clearkeycdmadapter',
2015 ], 2020 ],
2016 }], 2021 }],
2017 ['enable_printing!=1', { 2022 ['enable_printing!=1', {
2018 'sources/': [ 2023 'sources/': [
2019 ['exclude', '^browser/extensions/api/cloud_print_private/cloud_print _private_apitest.cc'], 2024 ['exclude', '^browser/extensions/api/cloud_print_private/cloud_print _private_apitest.cc'],
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
2494 'dependencies': [ 2499 'dependencies': [
2495 '../printing/printing.gyp:printing', 2500 '../printing/printing.gyp:printing',
2496 ], 2501 ],
2497 }], 2502 }],
2498 ['enable_app_list==0', { 2503 ['enable_app_list==0', {
2499 'sources!': [ 2504 'sources!': [
2500 'browser/sync/test/integration/single_client_app_list_sync_test.cc', 2505 'browser/sync/test/integration/single_client_app_list_sync_test.cc',
2501 'browser/sync/test/integration/two_client_app_list_sync_test.cc', 2506 'browser/sync/test/integration/two_client_app_list_sync_test.cc',
2502 ], 2507 ],
2503 }], 2508 }],
2509 ['enable_managed_users==0', {
2510 'sources!': [
2511 'browser/sync/test/integration/single_client_managed_user_settings_s ync_test.cc',
2512 ],
2513 }],
2504 ], 2514 ],
2505 }, 2515 },
2506 { 2516 {
2507 'target_name': 'sync_performance_tests', 2517 'target_name': 'sync_performance_tests',
2508 'type': 'executable', 2518 'type': 'executable',
2509 'dependencies': [ 2519 'dependencies': [
2510 'test/perf/perf_test.gyp:*', 2520 'test/perf/perf_test.gyp:*',
2511 'test_support_sync_integration', 2521 'test_support_sync_integration',
2512 '../sync/sync.gyp:sync', 2522 '../sync/sync.gyp:sync',
2513 '../testing/gmock.gyp:gmock', 2523 '../testing/gmock.gyp:gmock',
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
2986 ['enable_webrtc==1', { 2996 ['enable_webrtc==1', {
2987 'dependencies': [ 2997 'dependencies': [
2988 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 2998 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
2989 ] 2999 ]
2990 }], 3000 }],
2991 ], 3001 ],
2992 }] 3002 }]
2993 }], 3003 }],
2994 ], # 'conditions' 3004 ], # 'conditions'
2995 } 3005 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698