Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: chrome/chrome_installer.gypi

Issue 2855003: Load net-internals from the newly created resources.pak file. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Work with mac bundles Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 'installer/linux/internal/rpm/build.sh', 342 'installer/linux/internal/rpm/build.sh',
343 'installer/linux/internal/rpm/chrome.spec.template', 343 'installer/linux/internal/rpm/chrome.spec.template',
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)/resources.pak',
352 '<(PRODUCT_DIR)/xdg-settings', 353 '<(PRODUCT_DIR)/xdg-settings',
353 '<(PRODUCT_DIR)/locales/en-US.pak', 354 '<(PRODUCT_DIR)/locales/en-US.pak',
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)'],
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698