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

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: Fix merge error in chrome/browser/BUILD.gn Created 6 years, 2 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 | 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 2308 matching lines...) Expand 10 before | Expand all | Expand 10 after
2319 # this is broken. 2319 # this is broken.
2320 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc', 2320 'browser/ui/views/frame/immersive_mode_controller_ash_unittest.cc',
2321 'browser/ui/views/select_file_dialog_extension_unittest.cc', 2321 'browser/ui/views/select_file_dialog_extension_unittest.cc',
2322 ], 2322 ],
2323 }], 2323 }],
2324 ['use_x11==1', { 2324 ['use_x11==1', {
2325 'dependencies': [ 2325 'dependencies': [
2326 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2326 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2327 ], 2327 ],
2328 }], 2328 }],
2329 [ 'cld_version==2', {
2330 'dependencies': [
2331 # Unit tests should be independent of the CLD2 access mechanism,
2332 # just use static for simplicity.
2333 '../third_party/cld_2/cld_2.gyp:cld2_static', ],
2334 }],
2329 ['OS=="linux"', { 2335 ['OS=="linux"', {
2330 'dependencies': [ 2336 'dependencies': [
2331 '../build/linux/system.gyp:ssl', 2337 '../build/linux/system.gyp:ssl',
2332 ], 2338 ],
2333 }], 2339 }],
2334 # Only add this test for 64 bit builds because otherwise we need the 32 2340 # Only add this test for 64 bit builds because otherwise we need the 32
2335 # bit library on 64 bit systems when running this test. 2341 # bit library on 64 bit systems when running this test.
2336 ['use_gnome_keyring == 1 and target_arch=="x64"', { 2342 ['use_gnome_keyring == 1 and target_arch=="x64"', {
2337 'sources': [ 2343 'sources': [
2338 'browser/password_manager/native_backend_gnome_x_unittest.cc', 2344 'browser/password_manager/native_backend_gnome_x_unittest.cc',
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
2870 'dependencies': [ 2876 'dependencies': [
2871 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2877 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2872 ], 2878 ],
2873 }], 2879 }],
2874 ], 2880 ],
2875 }, 2881 },
2876 ], 2882 ],
2877 }], 2883 }],
2878 ], # 'conditions' 2884 ], # 'conditions'
2879 } 2885 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698