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

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: All remaining comments addressed 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
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 2321 matching lines...) Expand 10 before | Expand all | Expand 10 after
2332 # this is broken. 2332 # this is broken.
2333 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc', 2333 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc',
2334 'browser/ui/views/select_file_dialog_extension_unittest.cc', 2334 'browser/ui/views/select_file_dialog_extension_unittest.cc',
2335 ], 2335 ],
2336 }], 2336 }],
2337 ['use_x11==1', { 2337 ['use_x11==1', {
2338 'dependencies': [ 2338 'dependencies': [
2339 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2339 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2340 ], 2340 ],
2341 }], 2341 }],
2342 [ 'cld_version==2', {
2343 'dependencies': [
2344 # Unit tests should be independent of the CLD2 access mechanism,
2345 # just use static for simplicity.
2346 '../third_party/cld_2/cld_2.gyp:cld2_static', ],
2347 }],
2342 ['OS=="linux"', { 2348 ['OS=="linux"', {
2343 'dependencies': [ 2349 'dependencies': [
2344 '../build/linux/system.gyp:ssl', 2350 '../build/linux/system.gyp:ssl',
2345 ], 2351 ],
2346 }], 2352 }],
2347 # Only add this test for 64 bit builds because otherwise we need the 32 2353 # Only add this test for 64 bit builds because otherwise we need the 32
2348 # bit library on 64 bit systems when running this test. 2354 # bit library on 64 bit systems when running this test.
2349 ['use_gnome_keyring == 1 and target_arch=="x64"', { 2355 ['use_gnome_keyring == 1 and target_arch=="x64"', {
2350 'sources': [ 2356 'sources': [
2351 'browser/password_manager/native_backend_gnome_x_unittest.cc', 2357 'browser/password_manager/native_backend_gnome_x_unittest.cc',
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
2905 'dependencies': [ 2911 'dependencies': [
2906 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2912 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2907 ], 2913 ],
2908 }], 2914 }],
2909 ], 2915 ],
2910 }, 2916 },
2911 ], 2917 ],
2912 }], 2918 }],
2913 ], # 'conditions' 2919 ], # 'conditions'
2914 } 2920 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698