| OLD | NEW |
| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 'dependencies': [ | 413 'dependencies': [ |
| 414 # This is needed by ../extensions/v8/heap_profiler_extension.cc | 414 # This is needed by ../extensions/v8/heap_profiler_extension.cc |
| 415 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 415 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 416 ], | 416 ], |
| 417 }], | 417 }], |
| 418 ], | 418 ], |
| 419 }], | 419 }], |
| 420 ['use_aura==1', { | 420 ['use_aura==1', { |
| 421 'sources/': [ | 421 'sources/': [ |
| 422 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'], | 422 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'], |
| 423 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'], | |
| 424 ], | 423 ], |
| 425 'sources!': [ | 424 'sources!': [ |
| 426 'webcursor_mac.mm', | 425 'webcursor_mac.mm', |
| 427 'webcursor_win.cc', | 426 'webcursor_win.cc', |
| 428 ], | 427 ], |
| 429 }], | 428 }], |
| 430 ['use_aura==1 and use_x11==1', { | 429 ['use_aura==1 and use_x11==1', { |
| 431 'link_settings': { | 430 'link_settings': { |
| 432 'libraries': [ '-lXcursor', ], | 431 'libraries': [ '-lXcursor', ], |
| 433 }, | 432 }, |
| 434 }], | 433 }], |
| 434 ['use_aura==1 and OS=="win"', { |
| 435 'sources/': [ |
| 436 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_aura'], |
| 437 ], |
| 438 }], |
| 435 ['OS!="mac"', { | 439 ['OS!="mac"', { |
| 436 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 440 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
| 437 'sources!': [ | 441 'sources!': [ |
| 438 'webthemeengine_impl_mac.cc', | 442 'webthemeengine_impl_mac.cc', |
| 439 ], | 443 ], |
| 440 }, { # else: OS=="mac" | 444 }, { # else: OS=="mac" |
| 441 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 445 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
| 442 'link_settings': { | 446 'link_settings': { |
| 443 'libraries': [ | 447 'libraries': [ |
| 444 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 448 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 }, | 512 }, |
| 509 'includes': [ '../../build/grit_action.gypi' ], | 513 'includes': [ '../../build/grit_action.gypi' ], |
| 510 }, | 514 }, |
| 511 ], | 515 ], |
| 512 'includes': [ '../../build/grit_target.gypi' ], | 516 'includes': [ '../../build/grit_target.gypi' ], |
| 513 }, | 517 }, |
| 514 ], | 518 ], |
| 515 }], | 519 }], |
| 516 ], | 520 ], |
| 517 } | 521 } |
| OLD | NEW |