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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 3396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3407 'renderer/webworker_base.h', | 3407 'renderer/webworker_base.h', |
3408 'renderer/webworker_proxy.cc', | 3408 'renderer/webworker_proxy.cc', |
3409 'renderer/webworker_proxy.h', | 3409 'renderer/webworker_proxy.h', |
3410 ], | 3410 ], |
3411 'link_settings': { | 3411 'link_settings': { |
3412 'mac_bundle_resources': [ | 3412 'mac_bundle_resources': [ |
3413 'renderer/renderer.sb', | 3413 'renderer/renderer.sb', |
3414 ], | 3414 ], |
3415 }, | 3415 }, |
3416 'conditions': [ | 3416 'conditions': [ |
| 3417 ['enable_pepper==1', { |
| 3418 'dependencies': [ |
| 3419 '../gpu/gpu.gyp:gpu_plugin', |
| 3420 ], |
| 3421 }], |
3417 ['disable_nacl!=1', { | 3422 ['disable_nacl!=1', { |
3418 'dependencies': [ | 3423 'dependencies': [ |
3419 'nacl', | 3424 'nacl', |
3420 ], | 3425 ], |
3421 }], | 3426 }], |
3422 # Linux-specific rules. | 3427 # Linux-specific rules. |
3423 ['OS=="linux"', { | 3428 ['OS=="linux"', { |
3424 'dependencies': [ | 3429 'dependencies': [ |
3425 '../build/linux/system.gyp:gtk', | 3430 '../build/linux/system.gyp:gtk', |
3426 '../sandbox/sandbox.gyp:sandbox', | 3431 '../sandbox/sandbox.gyp:sandbox', |
(...skipping 3539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6966 ] | 6971 ] |
6967 }], | 6972 }], |
6968 ], # 'conditions' | 6973 ], # 'conditions' |
6969 } | 6974 } |
6970 | 6975 |
6971 # Local Variables: | 6976 # Local Variables: |
6972 # tab-width:2 | 6977 # tab-width:2 |
6973 # indent-tabs-mode:nil | 6978 # indent-tabs-mode:nil |
6974 # End: | 6979 # End: |
6975 # vim: set expandtab tabstop=2 shiftwidth=2: | 6980 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |