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

Side by Side Diff: components/components_tests.gyp

Issue 236203019: Move UsbService to its own component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move usb_service component symbols into usb_service namespace Created 6 years, 8 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
« no previous file with comments | « components/components.gyp ('k') | components/usb_service.gypi » ('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 { 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 'components.gyp:translate_language_detection', 245 'components.gyp:translate_language_detection',
246 246
247 # Dependencies of variations 247 # Dependencies of variations
248 'components.gyp:variations', 248 'components.gyp:variations',
249 ], 249 ],
250 'conditions': [ 250 'conditions': [
251 ['OS != "ios"', { 251 ['OS != "ios"', {
252 'sources': [ 252 'sources': [
253 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 253 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
254 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 254 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
255 'usb_service/usb_context_unittest.cc',
255 ], 256 ],
256 'dependencies': [ 257 'dependencies': [
257 # Dependencies of autofill 258 # Dependencies of autofill
258 'components.gyp:autofill_content_browser', 259 'components.gyp:autofill_content_browser',
259 'components.gyp:autofill_content_renderer', 260 'components.gyp:autofill_content_renderer',
260 'components.gyp:autofill_content_test_support', 261 'components.gyp:autofill_content_test_support',
261 262
262 # Dependencies of dom_distiller 263 # Dependencies of dom_distiller
263 'components.gyp:dom_distiller_content', 264 'components.gyp:dom_distiller_content',
264 265
(...skipping 13 matching lines...) Expand all
278 'components.gyp:sessions', 279 'components.gyp:sessions',
279 'components.gyp:sessions_test_support', 280 'components.gyp:sessions_test_support',
280 281
281 # Dependencies of storage monitor 282 # Dependencies of storage monitor
282 'components.gyp:storage_monitor', 283 'components.gyp:storage_monitor',
283 'components.gyp:storage_monitor_test_support', 284 'components.gyp:storage_monitor_test_support',
284 285
285 # Dependencies of url_matcher. 286 # Dependencies of url_matcher.
286 'components.gyp:url_matcher', 287 'components.gyp:url_matcher',
287 288
289 # Dependencies of usb_service tests.
290 'components.gyp:usb_service',
291 '../third_party/libusb/libusb.gyp:libusb',
292
288 # Dependencies of visitedlink 293 # Dependencies of visitedlink
289 'components.gyp:visitedlink_browser', 294 'components.gyp:visitedlink_browser',
290 'components.gyp:visitedlink_renderer', 295 'components.gyp:visitedlink_renderer',
291 '../content/content_resources.gyp:content_resources', 296 '../content/content_resources.gyp:content_resources',
292 297
293 # Dependencies of web_modal 298 # Dependencies of web_modal
294 'components.gyp:web_modal', 299 'components.gyp:web_modal',
295 'components.gyp:web_modal_test_support', 300 'components.gyp:web_modal_test_support',
296 ], 301 ],
297 }, { # 'OS == "ios"' 302 }, { # 'OS == "ios"'
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 'sources!': [ 378 'sources!': [
374 'password_manager/core/browser/password_store_default_unittest.c c', 379 'password_manager/core/browser/password_store_default_unittest.c c',
375 ], 380 ],
376 }], 381 }],
377 ['OS == "android"', { 382 ['OS == "android"', {
378 'sources!': [ 383 'sources!': [
379 'signin/core/browser/mutable_profile_oauth2_token_service_unitte st.cc', 384 'signin/core/browser/mutable_profile_oauth2_token_service_unitte st.cc',
380 'storage_monitor/media_storage_util_unittest.cc', 385 'storage_monitor/media_storage_util_unittest.cc',
381 'storage_monitor/storage_info_unittest.cc', 386 'storage_monitor/storage_info_unittest.cc',
382 'storage_monitor/storage_monitor_unittest.cc', 387 'storage_monitor/storage_monitor_unittest.cc',
388 'usb_service/usb_context_unittest.cc',
383 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 389 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
384 ], 390 ],
385 'dependencies!': [ 391 'dependencies!': [
386 'components.gyp:storage_monitor', 392 'components.gyp:storage_monitor',
387 'components.gyp:storage_monitor_test_support', 393 'components.gyp:storage_monitor_test_support',
394 'components.gyp:usb_service',
388 'components.gyp:web_modal', 395 'components.gyp:web_modal',
389 'components.gyp:web_modal_test_support', 396 'components.gyp:web_modal_test_support',
397 '../third_party/libusb/libusb.gyp:libusb',
390 ], 398 ],
391 }], 399 }],
392 ['OS == "android" and gtest_target_type == "shared_library"', { 400 ['OS == "android" and gtest_target_type == "shared_library"', {
393 'dependencies': [ 401 'dependencies': [
394 '../testing/android/native_test.gyp:native_test_native_code', 402 '../testing/android/native_test.gyp:native_test_native_code',
395 ] 403 ]
396 }], 404 }],
397 ['chromeos==1', { 405 ['chromeos==1', {
398 'sources!': [ 406 'sources!': [
399 'storage_monitor/storage_monitor_linux_unittest.cc', 407 'storage_monitor/storage_monitor_linux_unittest.cc',
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'dependencies': [ 669 'dependencies': [
662 '../base/allocator/allocator.gyp:allocator', 670 '../base/allocator/allocator.gyp:allocator',
663 ], 671 ],
664 }], 672 }],
665 ], 673 ],
666 }, 674 },
667 ], 675 ],
668 }], 676 }],
669 ], 677 ],
670 } 678 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/usb_service.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698