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

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

Issue 6041005: Add implementation of WebThemeEngine for the Mac (declared by... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 12 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 | « no previous file | webkit/glue/webkitclient_impl.h » ('j') | webkit/glue/webthemeengine_impl_mac.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 'webmenurunner_mac.mm', 410 'webmenurunner_mac.mm',
411 'webpasswordautocompletelistener_impl.cc', 411 'webpasswordautocompletelistener_impl.cc',
412 'webpasswordautocompletelistener_impl.h', 412 'webpasswordautocompletelistener_impl.h',
413 'webpreferences.cc', 413 'webpreferences.cc',
414 'webpreferences.h', 414 'webpreferences.h',
415 'websocketstreamhandle_bridge.h', 415 'websocketstreamhandle_bridge.h',
416 'websocketstreamhandle_delegate.h', 416 'websocketstreamhandle_delegate.h',
417 'websocketstreamhandle_impl.cc', 417 'websocketstreamhandle_impl.cc',
418 'websocketstreamhandle_impl.h', 418 'websocketstreamhandle_impl.h',
419 'webthemeengine_impl_linux.cc', 419 'webthemeengine_impl_linux.cc',
420 'webthemeengine_impl_mac.cc',
420 'webthemeengine_impl_win.cc', 421 'webthemeengine_impl_win.cc',
421 'weburlloader_impl.cc', 422 'weburlloader_impl.cc',
422 'weburlloader_impl.h', 423 'weburlloader_impl.h',
423 'webvideoframe_impl.cc', 424 'webvideoframe_impl.cc',
424 'webvideoframe_impl.h', 425 'webvideoframe_impl.h',
425 'window_open_disposition.h', 426 'window_open_disposition.h',
426 'window_open_disposition.cc', 427 'window_open_disposition.cc',
427 428
428 # These files used to be built in the webcore target, but moved here 429 # These files used to be built in the webcore target, but moved here
429 # since part of glue. 430 # since part of glue.
(...skipping 23 matching lines...) Expand all
453 'sources!': [ 454 'sources!': [
454 'plugins/plugin_stubs.cc', 455 'plugins/plugin_stubs.cc',
455 ], 456 ],
456 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \ 457 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \
457 # and OS!="solaris"' 458 # and OS!="solaris"'
458 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], 459 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'],
459 ['exclude', r'/gtk_']], 460 ['exclude', r'/gtk_']],
460 }], 461 }],
461 ['OS!="mac"', { 462 ['OS!="mac"', {
462 'sources/': [['exclude', '_mac\\.(cc|mm)$']], 463 'sources/': [['exclude', '_mac\\.(cc|mm)$']],
464 'sources!': [
465 'webthemeengine_impl_mac.cc',
466 ],
463 }, { # else: OS=="mac" 467 }, { # else: OS=="mac"
464 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], 468 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']],
465 'link_settings': { 469 'link_settings': {
466 'libraries': [ 470 'libraries': [
467 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 471 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
468 ], 472 ],
469 }, 473 },
470 }], 474 }],
471 ['enable_gpu!=1', { 475 ['enable_gpu!=1', {
472 'sources!': [ 476 'sources!': [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 }], 515 }],
512 ['inside_chromium_build==0', { 516 ['inside_chromium_build==0', {
513 'dependencies': [ 517 'dependencies': [
514 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 518 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
515 ], 519 ],
516 }], 520 }],
517 ], 521 ],
518 }, 522 },
519 ], 523 ],
520 } 524 }
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/webkitclient_impl.h » ('j') | webkit/glue/webthemeengine_impl_mac.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698