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

Side by Side Diff: components/components_tests.gyp

Issue 706013004: Move non-browser specific ScreenshotTaker code to ui/snapshot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win dependencies and browser_tests. 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
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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 461
462 # Dependencies of url_fixer 462 # Dependencies of url_fixer
463 'components.gyp:url_fixer', 463 'components.gyp:url_fixer',
464 '../url/url.gyp:url_lib', 464 '../url/url.gyp:url_lib',
465 465
466 # Dependencies of variations 466 # Dependencies of variations
467 'components.gyp:variations', 467 'components.gyp:variations',
468 'components.gyp:variations_http_provider', 468 'components.gyp:variations_http_provider',
469 ], 469 ],
470 'conditions': [ 470 'conditions': [
471 ['use_aura == 1', {
472 'sources': [
473 'screenshot_taker/screenshot_taker_unittest.cc',
474 ],
475 'dependencies': [
476 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support',
477 'components.gyp:screenshot_taker',
478 ],
479 }],
471 ['toolkit_views == 1', { 480 ['toolkit_views == 1', {
472 'sources': [ 481 'sources': [
473 'bookmarks/browser/bookmark_node_data_unittest.cc', 482 'bookmarks/browser/bookmark_node_data_unittest.cc',
474 'constrained_window/constrained_window_views_unittest.cc', 483 'constrained_window/constrained_window_views_unittest.cc',
475 ], 484 ],
476 'dependencies': [ 485 'dependencies': [
477 '<(DEPTH)/ui/views/views.gyp:views_test_support', 486 '<(DEPTH)/ui/views/views.gyp:views_test_support',
478 'components.gyp:constrained_window', 487 'components.gyp:constrained_window',
479 ] 488 ]
480 }], 489 }],
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 'dependencies': [ 1034 'dependencies': [
1026 '../base/allocator/allocator.gyp:allocator', 1035 '../base/allocator/allocator.gyp:allocator',
1027 ], 1036 ],
1028 }], 1037 }],
1029 ], 1038 ],
1030 }, 1039 },
1031 ], 1040 ],
1032 }], 1041 }],
1033 ], 1042 ],
1034 } 1043 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698