| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 ], | 344 ], |
| 345 'packaging_files_binaries': [ | 345 'packaging_files_binaries': [ |
| 346 # TODO(mmoss) Any convenient way to get all the relevant build | 346 # TODO(mmoss) Any convenient way to get all the relevant build |
| 347 # files? (e.g. all locales, resources, etc.) | 347 # files? (e.g. all locales, resources, etc.) |
| 348 '<(PRODUCT_DIR)/chrome', | 348 '<(PRODUCT_DIR)/chrome', |
| 349 '<(PRODUCT_DIR)/chrome.pak', | 349 '<(PRODUCT_DIR)/chrome.pak', |
| 350 '<(PRODUCT_DIR)/chrome_sandbox', | 350 '<(PRODUCT_DIR)/chrome_sandbox', |
| 351 '<(PRODUCT_DIR)/libffmpegsumo.so', | 351 '<(PRODUCT_DIR)/libffmpegsumo.so', |
| 352 '<(PRODUCT_DIR)/xdg-settings', | 352 '<(PRODUCT_DIR)/xdg-settings', |
| 353 '<(PRODUCT_DIR)/locales/en-US.pak', | 353 '<(PRODUCT_DIR)/locales/en-US.pak', |
| 354 '<(PRODUCT_DIR)/libpdf.so', |
| 354 ], | 355 ], |
| 355 'flock_bash': ['flock', '--', '/tmp/linux_package_lock', 'bash'], | 356 'flock_bash': ['flock', '--', '/tmp/linux_package_lock', 'bash'], |
| 356 'deb_build': '<(PRODUCT_DIR)/installer/debian/build.sh', | 357 'deb_build': '<(PRODUCT_DIR)/installer/debian/build.sh', |
| 357 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', | 358 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', |
| 358 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', | 359 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', |
| 359 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 360 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
| 360 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', | 361 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', |
| 361 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 362 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
| 362 'conditions': [ | 363 'conditions': [ |
| 363 ['target_arch=="ia32"', { | 364 ['target_arch=="ia32"', { |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 }, | 849 }, |
| 849 }], | 850 }], |
| 850 ], | 851 ], |
| 851 } | 852 } |
| 852 | 853 |
| 853 # Local Variables: | 854 # Local Variables: |
| 854 # tab-width:2 | 855 # tab-width:2 |
| 855 # indent-tabs-mode:nil | 856 # indent-tabs-mode:nil |
| 856 # End: | 857 # End: |
| 857 # vim: set expandtab tabstop=2 shiftwidth=2: | 858 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |