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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 ['OS!="win"', { | 511 ['OS!="win"', { |
512 'sources/': [['exclude', '_win\\.cc$']], | 512 'sources/': [['exclude', '_win\\.cc$']], |
513 'sources!': [ | 513 'sources!': [ |
514 'webthemeengine_impl_win.cc', | 514 'webthemeengine_impl_win.cc', |
515 ], | 515 ], |
516 }, { # else: OS=="win" | 516 }, { # else: OS=="win" |
517 'sources/': [['exclude', '_posix\\.cc$']], | 517 'sources/': [['exclude', '_posix\\.cc$']], |
518 'include_dirs': [ | 518 'include_dirs': [ |
519 '<(DEPTH)/third_party/wtl/include', | 519 '<(DEPTH)/third_party/wtl/include', |
520 ], | 520 ], |
521 'dependencies': [ | |
522 '<(DEPTH)/build/win/system.gyp:cygwin', | |
523 ], | |
524 'sources!': [ | 521 'sources!': [ |
525 'plugins/plugin_stubs.cc', | 522 'plugins/plugin_stubs.cc', |
526 ], | 523 ], |
527 'conditions': [ | 524 'conditions': [ |
528 ['inside_chromium_build==1 and component=="shared_library"', { | 525 ['inside_chromium_build==1 and component=="shared_library"', { |
529 'dependencies': [ | 526 'dependencies': [ |
530 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:w
ebkit', | 527 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:w
ebkit', |
531 ], | 528 ], |
532 'export_dependent_settings': [ | 529 'export_dependent_settings': [ |
533 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:
webkit', | 530 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:
webkit', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 }, | 564 }, |
568 'includes': [ '../../build/grit_action.gypi' ], | 565 'includes': [ '../../build/grit_action.gypi' ], |
569 }, | 566 }, |
570 ], | 567 ], |
571 'includes': [ '../../build/grit_target.gypi' ], | 568 'includes': [ '../../build/grit_target.gypi' ], |
572 }, | 569 }, |
573 ], | 570 ], |
574 }], | 571 }], |
575 ], | 572 ], |
576 } | 573 } |
OLD | NEW |