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

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

Issue 8486020: compositor_unittests target is unimplmented on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and nit. 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
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 '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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 'dependencies': [ 447 'dependencies': [
448 '<(DEPTH)/build/linux/system.gyp:gtk', 448 '<(DEPTH)/build/linux/system.gyp:gtk',
449 ], 449 ],
450 'sources/': [['exclude', '_x11\\.cc$']], 450 'sources/': [['exclude', '_x11\\.cc$']],
451 'sources!': [ 451 'sources!': [
452 'plugins/plugin_stubs.cc', 452 'plugins/plugin_stubs.cc',
453 ], 453 ],
454 }], 454 }],
455 ['use_aura==1', { 455 ['use_aura==1', {
456 'sources/': [ 456 'sources/': [
457 ['exclude', '^../plugins/npapi/webplugin_delegate_impl_win.cc'], 457 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'],
458 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'],
458 ], 459 ],
459 'sources!': [ 460 'sources!': [
461 'webcursor_mac.mm',
460 'webcursor_win.cc', 462 'webcursor_win.cc',
461 ], 463 ],
462 }], 464 }],
463 ['OS!="mac"', { 465 ['OS!="mac"', {
464 'sources/': [['exclude', '_mac\\.(cc|mm)$']], 466 'sources/': [['exclude', '_mac\\.(cc|mm)$']],
465 'sources!': [ 467 'sources!': [
466 'webthemeengine_impl_mac.cc', 468 'webthemeengine_impl_mac.cc',
467 ], 469 ],
468 }, { # else: OS=="mac" 470 }, { # else: OS=="mac"
469 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], 471 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 }, 541 },
540 'includes': [ '../../build/grit_action.gypi' ], 542 'includes': [ '../../build/grit_action.gypi' ],
541 }, 543 },
542 ], 544 ],
543 'includes': [ '../../build/grit_target.gypi' ], 545 'includes': [ '../../build/grit_target.gypi' ],
544 }, 546 },
545 ], 547 ],
546 }], 548 }],
547 ], 549 ],
548 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698