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

Side by Side Diff: content/content_renderer.gypi

Issue 11362161: Use the WebTestProxy for layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'dependencies': [ 6 'dependencies': [
7 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../ppapi/ppapi_internal.gyp:ppapi_host', 9 '../ppapi/ppapi_internal.gyp:ppapi_host',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'renderer/web_ui_bindings.cc', 263 'renderer/web_ui_bindings.cc',
264 'renderer/web_ui_bindings.h', 264 'renderer/web_ui_bindings.h',
265 'renderer/webplugin_delegate_proxy.cc', 265 'renderer/webplugin_delegate_proxy.cc',
266 'renderer/webplugin_delegate_proxy.h', 266 'renderer/webplugin_delegate_proxy.h',
267 'renderer/websharedworker_proxy.cc', 267 'renderer/websharedworker_proxy.cc',
268 'renderer/websharedworker_proxy.h', 268 'renderer/websharedworker_proxy.h',
269 'renderer/websharedworkerrepository_impl.cc', 269 'renderer/websharedworkerrepository_impl.cc',
270 'renderer/websharedworkerrepository_impl.h', 270 'renderer/websharedworkerrepository_impl.h',
271 ], 271 ],
272 'conditions': [ 272 'conditions': [
273 ['component=="shared_library" and OS!="ios"', {
274 'sources': [
275 'layouttest_support/content_layouttest_support.cc',
276 ],
277 'dependencies': [
278 '<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTre e.gyp:TestRunner',
279 ],
280 }],
273 ['notifications==0', { 281 ['notifications==0', {
274 'sources!': [ 282 'sources!': [
275 'renderer/notification_provider.cc', 283 'renderer/notification_provider.cc',
276 'renderer/active_notification_tracker.cc', 284 'renderer/active_notification_tracker.cc',
277 ], 285 ],
278 }], 286 }],
279 ['input_speech==0', { 287 ['input_speech==0', {
280 'sources!': [ 288 'sources!': [
281 'renderer/input_tag_speech_dispatcher.cc', 289 'renderer/input_tag_speech_dispatcher.cc',
282 'renderer/input_tag_speech_dispatcher.h', 290 'renderer/input_tag_speech_dispatcher.h',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 }], 375 }],
368 ], 376 ],
369 'target_conditions': [ 377 'target_conditions': [
370 ['OS=="android"', { 378 ['OS=="android"', {
371 'sources/': [ 379 'sources/': [
372 ['include', '^renderer/render_view_linux\\.cc$'], 380 ['include', '^renderer/render_view_linux\\.cc$'],
373 ], 381 ],
374 }], 382 }],
375 ], 383 ],
376 } 384 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698