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

Side by Side Diff: components/components_tests.gyp

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: Rebase 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'dependencies': [ 474 'dependencies': [
475 '<(DEPTH)/ui/views/views.gyp:views_test_support', 475 '<(DEPTH)/ui/views/views.gyp:views_test_support',
476 'components.gyp:constrained_window', 476 'components.gyp:constrained_window',
477 ] 477 ]
478 }], 478 }],
479 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', { 479 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
480 'dependencies': [ 480 'dependencies': [
481 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 481 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
482 ], 482 ],
483 }], 483 }],
484 [ 'cld_version==0 or cld_version==2', {
485 'dependencies': [
486 # Unit tests should always use statically-linked CLD data.
487 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
488 }],
484 ['OS != "ios"', { 489 ['OS != "ios"', {
485 'sources': [ 490 'sources': [
486 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 491 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
487 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 492 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
488 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc', 493 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc',
489 'error_page/renderer/net_error_helper_core_unittest.cc', 494 'error_page/renderer/net_error_helper_core_unittest.cc',
490 'metrics/gpu/gpu_metrics_provider_unittest.cc', 495 'metrics/gpu/gpu_metrics_provider_unittest.cc',
491 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc', 496 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc',
492 'power/origin_power_map_unittest.cc', 497 'power/origin_power_map_unittest.cc',
493 ], 498 ],
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 'dependencies': [ 1026 'dependencies': [
1022 '../base/allocator/allocator.gyp:allocator', 1027 '../base/allocator/allocator.gyp:allocator',
1023 ], 1028 ],
1024 }], 1029 }],
1025 ], 1030 ],
1026 }, 1031 },
1027 ], 1032 ],
1028 }], 1033 }],
1029 ], 1034 ],
1030 } 1035 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698