OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
9 ], | 9 ], |
10 'variables': { | 10 'variables': { |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 '../base/base.gyp:linux_versioninfo', | 421 '../base/base.gyp:linux_versioninfo', |
422 ], | 422 ], |
423 'sources!': [ | 423 'sources!': [ |
424 'glue/plugins/plugin_stubs.cc', | 424 'glue/plugins/plugin_stubs.cc', |
425 ], | 425 ], |
426 }, { # else: OS!="linux" and OS!="freebsd" | 426 }, { # else: OS!="linux" and OS!="freebsd" |
427 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], | 427 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], |
428 ['exclude', r'/gtk_']], | 428 ['exclude', r'/gtk_']], |
429 }], | 429 }], |
430 ['OS!="mac"', { | 430 ['OS!="mac"', { |
431 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 431 'sources/': [['exclude', '_mac\\.(cc|mm)$']] |
432 }], | |
433 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { | |
434 'dependencies': [ | |
435 '../gpu/gpu.gyp:gpu_plugin', | |
436 ], | |
437 }], | 432 }], |
438 ['OS!="win"', { | 433 ['OS!="win"', { |
439 'sources/': [['exclude', '_win\\.cc$']], | 434 'sources/': [['exclude', '_win\\.cc$']], |
440 'sources!': [ | 435 'sources!': [ |
441 # These files are Windows-only now but may be ported to other | 436 # These files are Windows-only now but may be ported to other |
442 # platforms. | 437 # platforms. |
443 'glue/webaccessibility.cc', | 438 'glue/webaccessibility.cc', |
444 'glue/webaccessibility.h', | 439 'glue/webaccessibility.h', |
445 'glue/webthemeengine_impl_win.cc', | 440 'glue/webthemeengine_impl_win.cc', |
446 ], | 441 ], |
447 }, { # else: OS=="win" | 442 }, { # else: OS=="win" |
448 'sources/': [['exclude', '_posix\\.cc$']], | 443 'sources/': [['exclude', '_posix\\.cc$']], |
449 'include_dirs': [ | 444 'include_dirs': [ |
450 '../chrome/third_party/wtl/include', | 445 '../chrome/third_party/wtl/include', |
451 ], | 446 ], |
452 'dependencies': [ | 447 'dependencies': [ |
453 '../build/win/system.gyp:cygwin', | 448 '../build/win/system.gyp:cygwin', |
| 449 '../gpu/gpu.gyp:gpu_plugin', |
454 'default_plugin/default_plugin.gyp:default_plugin', | 450 'default_plugin/default_plugin.gyp:default_plugin', |
455 ], | 451 ], |
456 'sources!': [ | 452 'sources!': [ |
457 'glue/plugins/plugin_stubs.cc', | 453 'glue/plugins/plugin_stubs.cc', |
458 ], | 454 ], |
459 }], | 455 }], |
460 ], | 456 ], |
461 }, | 457 }, |
462 { | 458 { |
463 'target_name': 'inspector_resources', | 459 'target_name': 'inspector_resources', |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 ], | 552 ], |
557 }, | 553 }, |
558 ], # targets | 554 ], # targets |
559 } | 555 } |
560 | 556 |
561 # Local Variables: | 557 # Local Variables: |
562 # tab-width:2 | 558 # tab-width:2 |
563 # indent-tabs-mode:nil | 559 # indent-tabs-mode:nil |
564 # End: | 560 # End: |
565 # vim: set expandtab tabstop=2 shiftwidth=2: | 561 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |