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

Side by Side Diff: content/content_tests.gypi

Issue 8599003: aura: Add glib dependency when appropriate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'],
(...skipping 28 matching lines...) Expand all
39 'browser/geolocation/arbitrator_dependency_factories_for_test.cc', 39 'browser/geolocation/arbitrator_dependency_factories_for_test.cc',
40 'browser/geolocation/arbitrator_dependency_factories_for_test.h', 40 'browser/geolocation/arbitrator_dependency_factories_for_test.h',
41 'browser/geolocation/fake_access_token_store.cc', 41 'browser/geolocation/fake_access_token_store.cc',
42 'browser/geolocation/fake_access_token_store.h', 42 'browser/geolocation/fake_access_token_store.h',
43 'browser/geolocation/mock_location_provider.cc', 43 'browser/geolocation/mock_location_provider.cc',
44 'browser/geolocation/mock_location_provider.h', 44 'browser/geolocation/mock_location_provider.h',
45 'browser/mock_content_browser_client.cc', 45 'browser/mock_content_browser_client.cc',
46 'browser/mock_content_browser_client.h', 46 'browser/mock_content_browser_client.h',
47 'browser/mock_resource_context.cc', 47 'browser/mock_resource_context.cc',
48 'browser/mock_resource_context.h', 48 'browser/mock_resource_context.h',
49 » 'browser/net/url_request_abort_on_end_job.cc', 49 'browser/net/url_request_abort_on_end_job.cc',
50 » 'browser/net/url_request_abort_on_end_job.h', 50 'browser/net/url_request_abort_on_end_job.h',
51 'browser/renderer_host/dummy_resource_handler.cc', 51 'browser/renderer_host/dummy_resource_handler.cc',
52 'browser/renderer_host/dummy_resource_handler.h', 52 'browser/renderer_host/dummy_resource_handler.h',
53 'browser/renderer_host/media/mock_media_observer.cc', 53 'browser/renderer_host/media/mock_media_observer.cc',
54 'browser/renderer_host/media/mock_media_observer.h', 54 'browser/renderer_host/media/mock_media_observer.h',
55 'browser/renderer_host/test_backing_store.cc', 55 'browser/renderer_host/test_backing_store.cc',
56 'browser/renderer_host/test_backing_store.h', 56 'browser/renderer_host/test_backing_store.h',
57 'browser/renderer_host/test_render_view_host.cc', 57 'browser/renderer_host/test_render_view_host.cc',
58 'browser/renderer_host/test_render_view_host.h', 58 'browser/renderer_host/test_render_view_host.h',
59 'browser/renderer_host/mock_render_process_host.cc', 59 'browser/renderer_host/mock_render_process_host.cc',
60 'browser/renderer_host/mock_render_process_host.h', 60 'browser/renderer_host/mock_render_process_host.h',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '../webkit/appcache/appcache_test_helper.h', 108 '../webkit/appcache/appcache_test_helper.h',
109 '../webkit/quota/mock_special_storage_policy.cc', 109 '../webkit/quota/mock_special_storage_policy.cc',
110 '../webkit/quota/mock_special_storage_policy.h', 110 '../webkit/quota/mock_special_storage_policy.h',
111 ], 111 ],
112 'conditions': [ 112 'conditions': [
113 ['toolkit_uses_gtk == 1', { 113 ['toolkit_uses_gtk == 1', {
114 'dependencies': [ 114 'dependencies': [
115 '../build/linux/system.gyp:gtk', 115 '../build/linux/system.gyp:gtk',
116 ], 116 ],
117 }], 117 }],
118 ['use_glib == 1', {
sky 2011/11/18 17:26:22 I'm very surprised we need this here. Shouldn't so
sadrul 2011/11/18 17:31:04 Indeed. I am surprised we need this too. And I am
119 'dependencies': [
120 '../build/linux/system.gyp:glib',
121 ],
122 }],
118 ], 123 ],
119 }, 124 },
120 { 125 {
121 'target_name': 'content_unittests', 126 'target_name': 'content_unittests',
122 'type': 'executable', 127 'type': 'executable',
123 'defines!': ['CONTENT_IMPLEMENTATION'], 128 'defines!': ['CONTENT_IMPLEMENTATION'],
124 'dependencies': [ 129 'dependencies': [
125 'content_browser', 130 'content_browser',
126 'content_gpu', 131 'content_gpu',
127 'content_plugin', 132 'content_plugin',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 ], 382 ],
378 'sources': [ 383 'sources': [
379 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 384 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
380 ], 385 ],
381 } 386 }
382 ], 387 ],
383 }, 388 },
384 ], 389 ],
385 ], 390 ],
386 } 391 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698