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

Side by Side Diff: components/components_tests.gyp

Issue 150993002: Reading, writing of CDD and CJT JSON formats. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 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,
11 }, 11 },
12 'conditions': [ 12 'conditions': [
13 ['android_webview_build == 0', { 13 ['android_webview_build == 0', {
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'components_unittests', 16 'target_name': 'components_unittests',
17 'type': '<(gtest_target_type)', 17 'type': '<(gtest_target_type)',
18 'sources': [ 18 'sources': [
19 'auto_login_parser/auto_login_parser_unittest.cc', 19 'auto_login_parser/auto_login_parser_unittest.cc',
20 'autofill/core/browser/webdata/autofill_entry_unittest.cc', 20 'autofill/core/browser/webdata/autofill_entry_unittest.cc',
21 'autofill/core/browser/webdata/web_data_service_unittest.cc', 21 'autofill/core/browser/webdata/web_data_service_unittest.cc',
22 'autofill/core/common/form_data_unittest.cc', 22 'autofill/core/common/form_data_unittest.cc',
23 'autofill/core/common/form_field_data_unittest.cc', 23 'autofill/core/common/form_field_data_unittest.cc',
24 'autofill/core/common/password_form_fill_data_unittest.cc', 24 'autofill/core/common/password_form_fill_data_unittest.cc',
25 'browser_context_keyed_service/browser_context_dependency_manager_un ittest.cc', 25 'browser_context_keyed_service/browser_context_dependency_manager_un ittest.cc',
26 'browser_context_keyed_service/dependency_graph_unittest.cc', 26 'browser_context_keyed_service/dependency_graph_unittest.cc',
27 'cloud_devices/printer_description_unittest.cc',
27 'dom_distiller/core/article_entry_unittest.cc', 28 'dom_distiller/core/article_entry_unittest.cc',
28 'dom_distiller/core/distiller_unittest.cc', 29 'dom_distiller/core/distiller_unittest.cc',
29 'dom_distiller/core/distiller_url_fetcher_unittest.cc', 30 'dom_distiller/core/distiller_url_fetcher_unittest.cc',
30 'dom_distiller/core/dom_distiller_database_unittest.cc', 31 'dom_distiller/core/dom_distiller_database_unittest.cc',
31 'dom_distiller/core/dom_distiller_model_unittest.cc', 32 'dom_distiller/core/dom_distiller_model_unittest.cc',
32 'dom_distiller/core/dom_distiller_service_unittest.cc', 33 'dom_distiller/core/dom_distiller_service_unittest.cc',
33 'dom_distiller/core/dom_distiller_store_unittest.cc', 34 'dom_distiller/core/dom_distiller_store_unittest.cc',
34 'dom_distiller/core/task_tracker_unittest.cc', 35 'dom_distiller/core/task_tracker_unittest.cc',
35 'json_schema/json_schema_validator_unittest.cc', 36 'json_schema/json_schema_validator_unittest.cc',
36 'json_schema/json_schema_validator_unittest_base.cc', 37 'json_schema/json_schema_validator_unittest_base.cc',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 '../ui/ui.gyp:ui', 83 '../ui/ui.gyp:ui',
83 84
84 # Dependencies of auto_login_parser 85 # Dependencies of auto_login_parser
85 'components.gyp:auto_login_parser', 86 'components.gyp:auto_login_parser',
86 87
87 # Dependencies of autofill 88 # Dependencies of autofill
88 'components.gyp:autofill_core_browser', 89 'components.gyp:autofill_core_browser',
89 'components.gyp:autofill_core_common', 90 'components.gyp:autofill_core_common',
90 'components.gyp:autofill_core_test_support', 91 'components.gyp:autofill_core_test_support',
91 92
93 # Dependencies of cloud_devices
94 'components.gyp:cloud_devices',
95
92 # Dependencies of dom_distiller 96 # Dependencies of dom_distiller
93 'components.gyp:distilled_page_proto', 97 'components.gyp:distilled_page_proto',
94 'components.gyp:dom_distiller_core', 98 'components.gyp:dom_distiller_core',
95 'components.gyp:dom_distiller_test_support', 99 'components.gyp:dom_distiller_test_support',
96 100
97 # Dependencies of encryptor 101 # Dependencies of encryptor
98 'components.gyp:encryptor', 102 'components.gyp:encryptor',
99 103
100 # Dependencies of json_schema 104 # Dependencies of json_schema
101 'components.gyp:json_schema', 105 'components.gyp:json_schema',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 'dependencies': [ 417 'dependencies': [
414 '../base/allocator/allocator.gyp:allocator', 418 '../base/allocator/allocator.gyp:allocator',
415 ], 419 ],
416 }], 420 }],
417 ], 421 ],
418 }, 422 },
419 ], 423 ],
420 }], 424 }],
421 ], 425 ],
422 } 426 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698