| 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 3830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3841 # chrome/app/theme/google_chrome/BRANDING have the short names, | 3841 # chrome/app/theme/google_chrome/BRANDING have the short names, |
| 3842 # etc.; should we try to extract from there instead? | 3842 # etc.; should we try to extract from there instead? |
| 3843 'product_name': 'chrome' | 3843 'product_name': 'chrome' |
| 3844 }], | 3844 }], |
| 3845 ], | 3845 ], |
| 3846 }], | 3846 }], |
| 3847 ['OS=="linux"', { | 3847 ['OS=="linux"', { |
| 3848 'conditions': [ | 3848 'conditions': [ |
| 3849 ['branding=="Chrome"', { | 3849 ['branding=="Chrome"', { |
| 3850 'dependencies': [ | 3850 'dependencies': [ |
| 3851 'installer/installer.gyp:installer_util', | 3851 'installer/installer.gyp:linux_installer_configs', |
| 3852 ], | 3852 ], |
| 3853 }], | 3853 }], |
| 3854 ['selinux==0', { | 3854 ['selinux==0', { |
| 3855 'dependencies': [ | 3855 'dependencies': [ |
| 3856 '../sandbox/sandbox.gyp:sandbox', | 3856 '../sandbox/sandbox.gyp:sandbox', |
| 3857 ], | 3857 ], |
| 3858 }], | 3858 }], |
| 3859 ['linux_sandbox_path != ""', { | 3859 ['linux_sandbox_path != ""', { |
| 3860 'defines': [ | 3860 'defines': [ |
| 3861 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | 3861 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', |
| (...skipping 3105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6967 ] | 6967 ] |
| 6968 }], | 6968 }], |
| 6969 ], # 'conditions' | 6969 ], # 'conditions' |
| 6970 } | 6970 } |
| 6971 | 6971 |
| 6972 # Local Variables: | 6972 # Local Variables: |
| 6973 # tab-width:2 | 6973 # tab-width:2 |
| 6974 # indent-tabs-mode:nil | 6974 # indent-tabs-mode:nil |
| 6975 # End: | 6975 # End: |
| 6976 # vim: set expandtab tabstop=2 shiftwidth=2: | 6976 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |