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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 11299074: Make use_aura set use_default_render_theme and moves (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge 2 trunk and update some ifdefs Created 8 years 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | webkit/glue/webkitplatformsupport_impl.h » ('j') | 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) 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 'webmenurunner_mac.h', 345 'webmenurunner_mac.h',
346 'webmenurunner_mac.mm', 346 'webmenurunner_mac.mm',
347 'webpreferences.cc', 347 'webpreferences.cc',
348 'webpreferences.h', 348 'webpreferences.h',
349 'websocketstreamhandle_bridge.h', 349 'websocketstreamhandle_bridge.h',
350 'websocketstreamhandle_delegate.h', 350 'websocketstreamhandle_delegate.h',
351 'websocketstreamhandle_impl.cc', 351 'websocketstreamhandle_impl.cc',
352 'websocketstreamhandle_impl.h', 352 'websocketstreamhandle_impl.h',
353 'webthemeengine_impl_android.cc', 353 'webthemeengine_impl_android.cc',
354 'webthemeengine_impl_android.h', 354 'webthemeengine_impl_android.h',
355 'webthemeengine_impl_linux.cc', 355 'webthemeengine_impl_default.cc',
356 'webthemeengine_impl_linux.h', 356 'webthemeengine_impl_default.h',
357 'webthemeengine_impl_mac.cc', 357 'webthemeengine_impl_mac.cc',
358 'webthemeengine_impl_mac.h', 358 'webthemeengine_impl_mac.h',
359 'webthemeengine_impl_win.cc', 359 'webthemeengine_impl_win.cc',
360 'webthemeengine_impl_win.h', 360 'webthemeengine_impl_win.h',
361 'webthread_impl.h', 361 'webthread_impl.h',
362 'webthread_impl.cc', 362 'webthread_impl.cc',
363 'weburlloader_impl.cc', 363 'weburlloader_impl.cc',
364 'weburlloader_impl.h', 364 'weburlloader_impl.h',
365 'weburlrequest_extradata_impl.cc', 365 'weburlrequest_extradata_impl.cc',
366 'weburlrequest_extradata_impl.h', 366 'weburlrequest_extradata_impl.h',
(...skipping 10 matching lines...) Expand all
377 'window_open_disposition.h', 377 'window_open_disposition.h',
378 'window_open_disposition.cc', 378 'window_open_disposition.cc',
379 'worker_task_runner.cc', 379 'worker_task_runner.cc',
380 'worker_task_runner.h', 380 'worker_task_runner.h',
381 ], 381 ],
382 # When glue is a dependency, it needs to be a hard dependency. 382 # When glue is a dependency, it needs to be a hard dependency.
383 # Dependents may rely on files generated by this target or one of its 383 # Dependents may rely on files generated by this target or one of its
384 # own hard dependencies. 384 # own hard dependencies.
385 'hard_dependency': 1, 385 'hard_dependency': 1,
386 'conditions': [ 386 'conditions': [
387 ['use_default_render_theme==0', {
388 'sources/': [
389 ['exclude', 'webthemeengine_impl_default.cc'],
390 ['exclude', 'webthemeengine_impl_default.h'],
391 ],
392 }, { # else: use_default_render_theme==1
393 'sources/': [
394 ['exclude', 'webthemeengine_impl_win.cc'],
395 ['exclude', 'webthemeengine_impl_win.h'],
396 ],
397 }],
387 ['toolkit_uses_gtk == 1', { 398 ['toolkit_uses_gtk == 1', {
388 'dependencies': [ 399 'dependencies': [
389 '<(DEPTH)/build/linux/system.gyp:gtk', 400 '<(DEPTH)/build/linux/system.gyp:gtk',
390 ], 401 ],
391 'sources/': [['exclude', '_x11\\.cc$']], 402 'sources/': [['exclude', '_x11\\.cc$']],
392 'sources!': [ 403 'sources!': [
393 'plugins/plugin_stubs.cc', 404 'plugins/plugin_stubs.cc',
394 ], 405 ],
395 'conditions': [ 406 'conditions': [
396 ['linux_use_tcmalloc == 1', { 407 ['linux_use_tcmalloc == 1', {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 }, 502 },
492 'includes': [ '../../build/grit_action.gypi' ], 503 'includes': [ '../../build/grit_action.gypi' ],
493 }, 504 },
494 ], 505 ],
495 'includes': [ '../../build/grit_target.gypi' ], 506 'includes': [ '../../build/grit_target.gypi' ],
496 }, 507 },
497 ], 508 ],
498 }], 509 }],
499 ], 510 ],
500 } 511 }
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | webkit/glue/webkitplatformsupport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698