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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 461633002: Refactor language detection logic to allow non-static CLD data sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make some of the harness factory methods private Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/base/chrome_unit_test_suite.cc » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 '../apps/saved_files_service_unittest.cc', 7 '../apps/saved_files_service_unittest.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 8 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
9 '../components/autofill/content/renderer/test_password_autofill_agent.h', 9 '../components/autofill/content/renderer/test_password_autofill_agent.h',
10 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 10 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
(...skipping 2332 matching lines...) Expand 10 before | Expand all | Expand 10 after
2343 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc', 2343 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc',
2344 'browser/ui/views/select_file_dialog_extension_unittest.cc', 2344 'browser/ui/views/select_file_dialog_extension_unittest.cc',
2345 ], 2345 ],
2346 }], 2346 }],
2347 ['use_x11==1', { 2347 ['use_x11==1', {
2348 'dependencies': [ 2348 'dependencies': [
2349 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2349 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2350 '../ui/events/devices/events_devices.gyp:events_devices', 2350 '../ui/events/devices/events_devices.gyp:events_devices',
2351 ], 2351 ],
2352 }], 2352 }],
2353 [ 'cld_version==0 or cld_version==2', {
2354 'dependencies': [
2355 # Unit tests should be independent of the CLD2 access mechanism,
2356 # just use static for simplicity.
2357 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
2358 }],
2353 ['OS=="linux"', { 2359 ['OS=="linux"', {
2354 'dependencies': [ 2360 'dependencies': [
2355 '../build/linux/system.gyp:ssl', 2361 '../build/linux/system.gyp:ssl',
2356 ], 2362 ],
2357 }], 2363 }],
2358 # Only add this test for 64 bit builds because otherwise we need the 32 2364 # Only add this test for 64 bit builds because otherwise we need the 32
2359 # bit library on 64 bit systems when running this test. 2365 # bit library on 64 bit systems when running this test.
2360 ['use_gnome_keyring == 1 and target_arch=="x64"', { 2366 ['use_gnome_keyring == 1 and target_arch=="x64"', {
2361 'sources': [ 2367 'sources': [
2362 'browser/password_manager/native_backend_gnome_x_unittest.cc', 2368 'browser/password_manager/native_backend_gnome_x_unittest.cc',
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
2738 ['enable_managed_users!=1', { 2744 ['enable_managed_users!=1', {
2739 'sources/': [ 2745 'sources/': [
2740 ['exclude', '^browser/supervised_user/'], 2746 ['exclude', '^browser/supervised_user/'],
2741 ], 2747 ],
2742 }], 2748 }],
2743 ['safe_browsing==1 and enable_extensions==1', { 2749 ['safe_browsing==1 and enable_extensions==1', {
2744 'sources': [ 2750 'sources': [
2745 'browser/extensions/blacklist_unittest.cc', 2751 'browser/extensions/blacklist_unittest.cc',
2746 ], 2752 ],
2747 }], 2753 }],
2748 ['cld_version==0 or cld_version==1', { 2754 ['cld_version==1', {
2749 'defines': [ 2755 'defines': [
2750 'CLD_WINDOWS', 2756 'CLD_WINDOWS',
2751 ], 2757 ],
2752 'direct_dependent_settings': { 2758 'direct_dependent_settings': {
2753 'defines': [ 2759 'defines': [
2754 'CLD_WINDOWS', 2760 'CLD_WINDOWS',
2755 ], 2761 ],
2756 }, 2762 },
2757 'sources': [ 2763 'sources': [
2758 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc', 2764 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
2920 'dependencies': [ 2926 'dependencies': [
2921 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2927 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2922 ], 2928 ],
2923 }], 2929 }],
2924 ], 2930 ],
2925 }, 2931 },
2926 ], 2932 ],
2927 }], 2933 }],
2928 ], # 'conditions' 2934 ], # 'conditions'
2929 } 2935 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/base/chrome_unit_test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698