| 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/WebKit/chromium/WebKit.gypi', | 8 '../third_party/WebKit/WebKit/chromium/WebKit.gypi', |
| 9 '../third_party/WebKit/WebCore/WebCore.gypi', | 9 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 10 'tools/test_shell/test_shell.gypi', | 10 'tools/test_shell/test_shell.gypi', |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 'extensions/v8/playback_extension.h', | 384 'extensions/v8/playback_extension.h', |
| 385 'extensions/v8/profiler_extension.cc', | 385 'extensions/v8/profiler_extension.cc', |
| 386 'extensions/v8/profiler_extension.h', | 386 'extensions/v8/profiler_extension.h', |
| 387 | 387 |
| 388 ], | 388 ], |
| 389 # When glue is a dependency, it needs to be a hard dependency. | 389 # When glue is a dependency, it needs to be a hard dependency. |
| 390 # Dependents may rely on files generated by this target or one of its | 390 # Dependents may rely on files generated by this target or one of its |
| 391 # own hard dependencies. | 391 # own hard dependencies. |
| 392 'hard_dependency': 1, | 392 'hard_dependency': 1, |
| 393 'conditions': [ | 393 'conditions': [ |
| 394 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 394 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 395 'dependencies': [ | 395 'dependencies': [ |
| 396 '../build/linux/system.gyp:gtk', | 396 '../build/linux/system.gyp:gtk', |
| 397 '../base/base.gyp:linux_versioninfo', | 397 '../base/base.gyp:linux_versioninfo', |
| 398 ], | 398 ], |
| 399 'sources!': [ | 399 'sources!': [ |
| 400 'glue/plugins/plugin_stubs.cc', | 400 'glue/plugins/plugin_stubs.cc', |
| 401 ], | 401 ], |
| 402 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" | 402 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \ |
| 403 # and OS!="solaris"' |
| 403 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], | 404 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], |
| 404 ['exclude', r'/gtk_']], | 405 ['exclude', r'/gtk_']], |
| 405 }], | 406 }], |
| 406 ['OS!="mac"', { | 407 ['OS!="mac"', { |
| 407 'sources/': [['exclude', '_mac\\.(cc|mm)$'], | 408 'sources/': [['exclude', '_mac\\.(cc|mm)$'], |
| 408 ['exclude', r'/mac_']], | 409 ['exclude', r'/mac_']], |
| 409 }, { # else: OS=="mac" | 410 }, { # else: OS=="mac" |
| 410 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 411 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
| 411 }], | 412 }], |
| 412 ['enable_gpu==1', { | 413 ['enable_gpu==1', { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 ], | 525 ], |
| 525 }, | 526 }, |
| 526 ], # targets | 527 ], # targets |
| 527 } | 528 } |
| 528 | 529 |
| 529 # Local Variables: | 530 # Local Variables: |
| 530 # tab-width:2 | 531 # tab-width:2 |
| 531 # indent-tabs-mode:nil | 532 # indent-tabs-mode:nil |
| 532 # End: | 533 # End: |
| 533 # vim: set expandtab tabstop=2 shiftwidth=2: | 534 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |