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

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: 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 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after
1997 '../content/content_shell_and_tests.gyp:copy_npapi_test_plugin', 1997 '../content/content_shell_and_tests.gyp:copy_npapi_test_plugin',
1998 ], 1998 ],
1999 }], 1999 }],
2000 ['enable_app_list==0', { 2000 ['enable_app_list==0', {
2001 'sources/': [ 2001 'sources/': [
2002 ['exclude', '^browser/apps/drive/'], 2002 ['exclude', '^browser/apps/drive/'],
2003 ['exclude', '^browser/ui/app_list/'], 2003 ['exclude', '^browser/ui/app_list/'],
2004 ['exclude', '^browser/ui/webui/app_list/'], 2004 ['exclude', '^browser/ui/webui/app_list/'],
2005 ], 2005 ],
2006 }], 2006 }],
2007 ['enable_managed_users==0', {
2008 'sources/': [
2009 ['exclude', '^browser/supervised_user/'],
2010 ],
2011 }],
2007 ['enable_pepper_cdms==1', { 2012 ['enable_pepper_cdms==1', {
2008 'dependencies': [ 2013 'dependencies': [
2009 # Runtime dependencies. 2014 # Runtime dependencies.
2010 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', 2015 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter',
2011 '../media/media.gyp:clearkeycdmadapter', 2016 '../media/media.gyp:clearkeycdmadapter',
2012 ], 2017 ],
2013 }], 2018 }],
2014 ['enable_printing!=1', { 2019 ['enable_printing!=1', {
2015 'sources/': [ 2020 'sources/': [
2016 ['exclude', '^browser/extensions/api/cloud_print_private/cloud_print _private_apitest.cc'], 2021 ['exclude', '^browser/extensions/api/cloud_print_private/cloud_print _private_apitest.cc'],
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
2489 'dependencies': [ 2494 'dependencies': [
2490 '../printing/printing.gyp:printing', 2495 '../printing/printing.gyp:printing',
2491 ], 2496 ],
2492 }], 2497 }],
2493 ['enable_app_list==0', { 2498 ['enable_app_list==0', {
2494 'sources!': [ 2499 'sources!': [
2495 'browser/sync/test/integration/single_client_app_list_sync_test.cc', 2500 'browser/sync/test/integration/single_client_app_list_sync_test.cc',
2496 'browser/sync/test/integration/two_client_app_list_sync_test.cc', 2501 'browser/sync/test/integration/two_client_app_list_sync_test.cc',
2497 ], 2502 ],
2498 }], 2503 }],
2504 ['enable_managed_users==0', {
2505 'sources!': [
2506 'browser/sync/test/integration/single_client_managed_user_settings_s ync_test.cc',
2507 ],
2508 }],
2499 ], 2509 ],
2500 }, 2510 },
2501 { 2511 {
2502 'target_name': 'sync_performance_tests', 2512 'target_name': 'sync_performance_tests',
2503 'type': 'executable', 2513 'type': 'executable',
2504 'dependencies': [ 2514 'dependencies': [
2505 'test/perf/perf_test.gyp:*', 2515 'test/perf/perf_test.gyp:*',
2506 'test_support_sync_integration', 2516 'test_support_sync_integration',
2507 '../sync/sync.gyp:sync', 2517 '../sync/sync.gyp:sync',
2508 '../testing/gmock.gyp:gmock', 2518 '../testing/gmock.gyp:gmock',
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
2981 ['enable_webrtc==1', { 2991 ['enable_webrtc==1', {
2982 'dependencies': [ 2992 'dependencies': [
2983 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 2993 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
2984 ] 2994 ]
2985 }], 2995 }],
2986 ], 2996 ],
2987 }] 2997 }]
2988 }], 2998 }],
2989 ], # 'conditions' 2999 ], # 'conditions'
2990 } 3000 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698