| 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 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
| 8 # 'branding_dir' is set in the 'conditions' section at the bottom. | 8 # 'branding_dir' is set in the 'conditions' section at the bottom. |
| 9 }, | 9 }, |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 'installer/linux/internal/rpm/build.sh', | 345 'installer/linux/internal/rpm/build.sh', |
| 346 'installer/linux/internal/rpm/chrome.spec.template', | 346 'installer/linux/internal/rpm/chrome.spec.template', |
| 347 ], | 347 ], |
| 348 'packaging_files_binaries': [ | 348 'packaging_files_binaries': [ |
| 349 # TODO(mmoss) Any convenient way to get all the relevant build | 349 # TODO(mmoss) Any convenient way to get all the relevant build |
| 350 # files? (e.g. all locales, resources, etc.) | 350 # files? (e.g. all locales, resources, etc.) |
| 351 '<(PRODUCT_DIR)/chrome', | 351 '<(PRODUCT_DIR)/chrome', |
| 352 '<(PRODUCT_DIR)/chrome.pak', | 352 '<(PRODUCT_DIR)/chrome.pak', |
| 353 '<(PRODUCT_DIR)/chrome_sandbox', | 353 '<(PRODUCT_DIR)/chrome_sandbox', |
| 354 '<(PRODUCT_DIR)/libffmpegsumo.so', | 354 '<(PRODUCT_DIR)/libffmpegsumo.so', |
| 355 '<(PRODUCT_DIR)/xdg-mime', |
| 355 '<(PRODUCT_DIR)/xdg-settings', | 356 '<(PRODUCT_DIR)/xdg-settings', |
| 356 '<(PRODUCT_DIR)/locales/en-US.pak', | 357 '<(PRODUCT_DIR)/locales/en-US.pak', |
| 357 ], | 358 ], |
| 358 'flock_bash': ['flock', '--', '/tmp/linux_package_lock', 'bash'], | 359 'flock_bash': ['flock', '--', '/tmp/linux_package_lock', 'bash'], |
| 359 'deb_build': '<(PRODUCT_DIR)/installer/debian/build.sh', | 360 'deb_build': '<(PRODUCT_DIR)/installer/debian/build.sh', |
| 360 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', | 361 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', |
| 361 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', | 362 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', |
| 362 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 363 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
| 363 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', | 364 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', |
| 364 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 365 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 }, | 854 }, |
| 854 }], | 855 }], |
| 855 ], | 856 ], |
| 856 } | 857 } |
| 857 | 858 |
| 858 # Local Variables: | 859 # Local Variables: |
| 859 # tab-width:2 | 860 # tab-width:2 |
| 860 # indent-tabs-mode:nil | 861 # indent-tabs-mode:nil |
| 861 # End: | 862 # End: |
| 862 # vim: set expandtab tabstop=2 shiftwidth=2: | 863 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |