| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 ['use_aura==1 and use_x11==1', { | 423 ['use_aura==1 and use_x11==1', { |
| 424 'link_settings': { | 424 'link_settings': { |
| 425 'libraries': [ '-lXcursor', ], | 425 'libraries': [ '-lXcursor', ], |
| 426 }, | 426 }, |
| 427 }], | 427 }], |
| 428 ['use_aura==1 and OS=="win"', { | 428 ['use_aura==1 and OS=="win"', { |
| 429 'sources/': [ | 429 'sources/': [ |
| 430 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_aura'], | 430 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_aura'], |
| 431 ], | 431 ], |
| 432 }], | 432 }], |
| 433 ['enable_web_intents==0', { |
| 434 'sources!': [ |
| 435 'web_intent_data.cc', |
| 436 'web_intent_data.h', |
| 437 'web_intent_reply_data.cc', |
| 438 'web_intent_reply_data.h', |
| 439 'web_intent_service_data.cc', |
| 440 'web_intent_service_data.h', |
| 441 ], |
| 442 }], |
| 433 ['OS!="mac"', { | 443 ['OS!="mac"', { |
| 434 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 444 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
| 435 'sources!': [ | 445 'sources!': [ |
| 436 'webthemeengine_impl_mac.cc', | 446 'webthemeengine_impl_mac.cc', |
| 437 ], | 447 ], |
| 438 }, { # else: OS=="mac" | 448 }, { # else: OS=="mac" |
| 439 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 449 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
| 440 'link_settings': { | 450 'link_settings': { |
| 441 'libraries': [ | 451 'libraries': [ |
| 442 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 452 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 }, | 512 }, |
| 503 'includes': [ '../../build/grit_action.gypi' ], | 513 'includes': [ '../../build/grit_action.gypi' ], |
| 504 }, | 514 }, |
| 505 ], | 515 ], |
| 506 'includes': [ '../../build/grit_target.gypi' ], | 516 'includes': [ '../../build/grit_target.gypi' ], |
| 507 }, | 517 }, |
| 508 ], | 518 ], |
| 509 }], | 519 }], |
| 510 ], | 520 ], |
| 511 } | 521 } |
| OLD | NEW |