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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', | 357 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', |
358 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', | 358 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', |
359 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 359 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
360 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', | 360 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', |
361 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], | 361 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], |
362 'conditions': [ | 362 'conditions': [ |
363 ['target_arch=="ia32"', { | 363 ['target_arch=="ia32"', { |
364 'deb_arch': 'i386', | 364 'deb_arch': 'i386', |
365 'rpm_arch': 'i386', | 365 'rpm_arch': 'i386', |
366 # Flash Player for Linux is currently only available for ia32. | 366 # Flash Player for Linux is currently only available for ia32. |
367 'packaging_files_binaries': ['<(PRODUCT_DIR)/libgcflashplayer.so'], | 367 'packaging_files_binaries': [ |
| 368 '<(PRODUCT_DIR)/libgcflashplayer.so', |
| 369 '<(PRODUCT_DIR)/plugin.vch', |
| 370 ], |
368 }], | 371 }], |
369 ['target_arch=="x64"', { | 372 ['target_arch=="x64"', { |
370 'deb_arch': 'amd64', | 373 'deb_arch': 'amd64', |
371 'rpm_arch': 'x86_64', | 374 'rpm_arch': 'x86_64', |
372 }], | 375 }], |
373 ], | 376 ], |
374 }, | 377 }, |
375 'targets': [ | 378 'targets': [ |
376 { | 379 { |
377 'target_name': 'linux_installer_configs', | 380 'target_name': 'linux_installer_configs', |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 }, | 841 }, |
839 }], | 842 }], |
840 ], | 843 ], |
841 } | 844 } |
842 | 845 |
843 # Local Variables: | 846 # Local Variables: |
844 # tab-width:2 | 847 # tab-width:2 |
845 # indent-tabs-mode:nil | 848 # indent-tabs-mode:nil |
846 # End: | 849 # End: |
847 # vim: set expandtab tabstop=2 shiftwidth=2: | 850 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |