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

Side by Side Diff: content/content_tests.gypi

Issue 8351052: Created a DownloadManager interface, for use in unit tests.. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Mac & Clang issues. Created 9 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
11 'dependencies': [ 11 'dependencies': [
12 '../build/temp_gyp/googleurl.gyp:googleurl', 12 '../build/temp_gyp/googleurl.gyp:googleurl',
13 'content_common', 13 'content_common',
14 '../skia/skia.gyp:skia', 14 '../skia/skia.gyp:skia',
15 '../testing/gmock.gyp:gmock', 15 '../testing/gmock.gyp:gmock',
16 '../testing/gtest.gyp:gtest', 16 '../testing/gtest.gyp:gtest',
17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
18 '../ui/gfx/compositor/compositor.gyp:test_compositor', 18 '../ui/gfx/compositor/compositor.gyp:test_compositor',
19 '../ui/gfx/surface/surface.gyp:surface', 19 '../ui/gfx/surface/surface.gyp:surface',
20 '../ui/ui.gyp:ui_test_support', 20 '../ui/ui.gyp:ui_test_support',
21 '../webkit/support/webkit_support.gyp:appcache', 21 '../webkit/support/webkit_support.gyp:appcache',
22 ], 22 ],
23 'include_dirs': [ 23 'include_dirs': [
24 '..', 24 '..',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 # TODO(phajdan.jr): All of those files should live in content/test. 27 # TODO(phajdan.jr): All of those files should live in content/test.
28 'browser/download/mock_download_manager.cc',
28 'browser/download/mock_download_manager.h', 29 'browser/download/mock_download_manager.h',
29 'browser/download/mock_download_manager_delegate.cc', 30 'browser/download/mock_download_manager_delegate.cc',
30 'browser/download/mock_download_manager_delegate.h', 31 'browser/download/mock_download_manager_delegate.h',
31 'browser/geolocation/arbitrator_dependency_factories_for_test.cc', 32 'browser/geolocation/arbitrator_dependency_factories_for_test.cc',
32 'browser/geolocation/arbitrator_dependency_factories_for_test.h', 33 'browser/geolocation/arbitrator_dependency_factories_for_test.h',
33 'browser/geolocation/fake_access_token_store.cc', 34 'browser/geolocation/fake_access_token_store.cc',
34 'browser/geolocation/fake_access_token_store.h', 35 'browser/geolocation/fake_access_token_store.h',
35 'browser/geolocation/mock_location_provider.cc', 36 'browser/geolocation/mock_location_provider.cc',
36 'browser/geolocation/mock_location_provider.h', 37 'browser/geolocation/mock_location_provider.h',
37 'browser/mock_content_browser_client.cc', 38 'browser/mock_content_browser_client.cc',
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 ], 347 ],
347 'sources': [ 348 'sources': [
348 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 349 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
349 ], 350 ],
350 } 351 }
351 ], 352 ],
352 }, 353 },
353 ], 354 ],
354 ], 355 ],
355 } 356 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698