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

Side by Side Diff: content/content_tests.gypi

Issue 8233039: Link startup_helper_win statically into executables (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove dynamic-only changes Created 9 years, 2 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 | « content/content_shell.gypi ('k') | 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'content_plugin', 93 'content_plugin',
94 'content_renderer', 94 'content_renderer',
95 'test_support_content', 95 'test_support_content',
96 '../base/base.gyp:test_support_base', 96 '../base/base.gyp:test_support_base',
97 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 97 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
98 '../crypto/crypto.gyp:crypto', 98 '../crypto/crypto.gyp:crypto',
99 '../gpu/gpu.gyp:gpu_unittest_utils', 99 '../gpu/gpu.gyp:gpu_unittest_utils',
100 '../ipc/ipc.gyp:test_support_ipc', 100 '../ipc/ipc.gyp:test_support_ipc',
101 '../media/media.gyp:media_test_support', 101 '../media/media.gyp:media_test_support',
102 '../net/net.gyp:net_test_support', 102 '../net/net.gyp:net_test_support',
103 '../sandbox/sandbox.gyp:sandbox',
103 '../skia/skia.gyp:skia', 104 '../skia/skia.gyp:skia',
104 '../testing/gmock.gyp:gmock', 105 '../testing/gmock.gyp:gmock',
105 '../testing/gtest.gyp:gtest', 106 '../testing/gtest.gyp:gtest',
106 '../third_party/libjingle/libjingle.gyp:libjingle', 107 '../third_party/libjingle/libjingle.gyp:libjingle',
107 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 108 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
108 '../ui/gfx/gl/gl.gyp:gl', 109 '../ui/gfx/gl/gl.gyp:gl',
109 '../ui/ui.gyp:ui', 110 '../ui/ui.gyp:ui',
110 '../webkit/support/webkit_support.gyp:glue', 111 '../webkit/support/webkit_support.gyp:glue',
111 '../webkit/support/webkit_support.gyp:quota', 112 '../webkit/support/webkit_support.gyp:quota',
112 ], 113 ],
113 'include_dirs': [ 114 'include_dirs': [
114 '..', 115 '..',
115 ], 116 ],
116 'sources': [ 117 'sources': [
118 'app/startup_helper_win.cc',
117 'browser/appcache/chrome_appcache_service_unittest.cc', 119 'browser/appcache/chrome_appcache_service_unittest.cc',
118 'browser/browser_thread_unittest.cc', 120 'browser/browser_thread_unittest.cc',
119 'browser/browser_url_handler_unittest.cc', 121 'browser/browser_url_handler_unittest.cc',
120 'browser/child_process_security_policy_unittest.cc', 122 'browser/child_process_security_policy_unittest.cc',
121 'browser/debugger/devtools_manager_unittest.cc', 123 'browser/debugger/devtools_manager_unittest.cc',
122 'browser/device_orientation/provider_unittest.cc', 124 'browser/device_orientation/provider_unittest.cc',
123 'browser/download/base_file_unittest.cc', 125 'browser/download/base_file_unittest.cc',
124 'browser/download/download_file_unittest.cc', 126 'browser/download/download_file_unittest.cc',
125 'browser/download/download_id_unittest.cc', 127 'browser/download/download_id_unittest.cc',
126 'browser/download/download_status_updater_unittest.cc', 128 'browser/download/download_status_updater_unittest.cc',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 'defines!': ['CONTENT_IMPLEMENTATION'], 224 'defines!': ['CONTENT_IMPLEMENTATION'],
223 'dependencies': [ 225 'dependencies': [
224 'content_browser', 226 'content_browser',
225 'content_gpu', 227 'content_gpu',
226 'content_plugin', 228 'content_plugin',
227 'content_renderer', 229 'content_renderer',
228 'content_shell_lib', 230 'content_shell_lib',
229 'test_support_content', 231 'test_support_content',
230 '../base/base.gyp:test_support_base', 232 '../base/base.gyp:test_support_base',
231 '../net/net.gyp:net_test_support', 233 '../net/net.gyp:net_test_support',
234 '../sandbox/sandbox.gyp:sandbox',
232 '../skia/skia.gyp:skia', 235 '../skia/skia.gyp:skia',
233 '../testing/gtest.gyp:gtest', 236 '../testing/gtest.gyp:gtest',
234 '../ui/ui.gyp:ui', 237 '../ui/ui.gyp:ui',
235 '../webkit/support/webkit_support.gyp:glue', 238 '../webkit/support/webkit_support.gyp:glue',
236 ], 239 ],
237 'include_dirs': [ 240 'include_dirs': [
238 '..', 241 '..',
239 ], 242 ],
240 'defines': [ 243 'defines': [
241 'HAS_OUT_OF_PROC_TEST_RUNNER', 244 'HAS_OUT_OF_PROC_TEST_RUNNER',
242 ], 245 ],
243 'sources': [ 246 'sources': [
247 'app/startup_helper_win.cc',
244 'test/content_browser_test.h', 248 'test/content_browser_test.h',
245 'test/content_browser_test.cc', 249 'test/content_browser_test.cc',
246 'test/content_test_launcher.cc', 250 'test/content_test_launcher.cc',
247 'test/test_launcher.cc', 251 'test/test_launcher.cc',
248 'test/test_launcher.h', 252 'test/test_launcher.h',
249 ], 253 ],
250 'conditions': [ 254 'conditions': [
251 ['OS=="win"', { 255 ['OS=="win"', {
252 'link_settings': { 256 'link_settings': {
253 'libraries': [ 257 'libraries': [
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 ], 316 ],
313 'sources': [ 317 'sources': [
314 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 318 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
315 ], 319 ],
316 } 320 }
317 ], 321 ],
318 }, 322 },
319 ], 323 ],
320 ], 324 ],
321 } 325 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698