| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 294 |
| 295 ], | 295 ], |
| 296 # When glue is a dependency, it needs to be a hard dependency. | 296 # When glue is a dependency, it needs to be a hard dependency. |
| 297 # Dependents may rely on files generated by this target or one of its | 297 # Dependents may rely on files generated by this target or one of its |
| 298 # own hard dependencies. | 298 # own hard dependencies. |
| 299 'hard_dependency': 1, | 299 'hard_dependency': 1, |
| 300 'conditions': [ | 300 'conditions': [ |
| 301 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 301 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 302 'dependencies': [ | 302 'dependencies': [ |
| 303 '<(DEPTH)/build/linux/system.gyp:gtk', | 303 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 304 '<(DEPTH)/base/base.gyp:linux_versioninfo', | |
| 305 ], | 304 ], |
| 306 'sources!': [ | 305 'sources!': [ |
| 307 'plugins/plugin_stubs.cc', | 306 'plugins/plugin_stubs.cc', |
| 308 ], | 307 ], |
| 309 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \ | 308 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \ |
| 310 # and OS!="solaris"' | 309 # and OS!="solaris"' |
| 311 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], | 310 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], |
| 312 ['exclude', r'/gtk_']], | 311 ['exclude', r'/gtk_']], |
| 313 }], | 312 }], |
| 314 ['OS!="mac"', { | 313 ['OS!="mac"', { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 }], | 349 }], |
| 351 ['inside_chromium_build==0', { | 350 ['inside_chromium_build==0', { |
| 352 'dependencies': [ | 351 'dependencies': [ |
| 353 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 352 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 354 ], | 353 ], |
| 355 }], | 354 }], |
| 356 ], | 355 ], |
| 357 }, | 356 }, |
| 358 ], | 357 ], |
| 359 } | 358 } |
| OLD | NEW |