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

Side by Side Diff: chrome/installer/installer.gyp

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 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 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py', 3 'version_py': '../../chrome/tools/build/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 }, 7 },
8 'includes': [
9 '../../build/common.gypi',
10 ],
11 'conditions': [ 8 'conditions': [
12 ['OS=="win"', { 9 ['OS=="win"', {
13 'targets': [ 10 'targets': [
14 { 11 {
15 'target_name': 'installer_util', 12 'target_name': 'installer_util',
16 'type': '<(library)', 13 'type': '<(library)',
17 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC', 14 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC',
18 'dependencies': [ 15 'dependencies': [
19 '../../app/app.gyp:app_id', 16 '../../app/app.gyp:app_id',
20 'installer_util_strings', 17 'installer_util_strings',
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'variables': { 631 'variables': {
635 'branding_dir': '../app/theme/google_chrome', 632 'branding_dir': '../app/theme/google_chrome',
636 }, 633 },
637 }, { # else branding!="Chrome" 634 }, { # else branding!="Chrome"
638 'variables': { 635 'variables': {
639 'branding_dir': '../app/theme/chromium', 636 'branding_dir': '../app/theme/chromium',
640 }, 637 },
641 }], 638 }],
642 ], 639 ],
643 } 640 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698