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

Side by Side Diff: chrome/chrome.gyp

Issue 10914296: Fix missing dependency from app_host to chrome_version_resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 }, 866 },
867 { 867 {
868 'target_name': 'chrome_version_resources', 868 'target_name': 'chrome_version_resources',
869 'type': 'none', 869 'type': 'none',
870 'direct_dependent_settings': { 870 'direct_dependent_settings': {
871 'include_dirs': [ 871 'include_dirs': [
872 '<(SHARED_INTERMEDIATE_DIR)/chrome_version', 872 '<(SHARED_INTERMEDIATE_DIR)/chrome_version',
873 ], 873 ],
874 }, 874 },
875 'sources': [ 875 'sources': [
876 'app/app_host_exe.ver',
876 'app/chrome_exe.ver', 877 'app/chrome_exe.ver',
877 'app/chrome_dll.ver', 878 'app/chrome_dll.ver',
878 'app/nacl64_exe.ver', 879 'app/nacl64_exe.ver',
879 'app/other.ver', 880 'app/other.ver',
880 ], 881 ],
881 'rules': [ 882 'rules': [
882 { 883 {
883 'rule_name': 'version', 884 'rule_name': 'version',
884 'extension': 'ver', 885 'extension': 'ver',
885 'variables': { 886 'variables': {
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 '../build/java.gypi', 1095 '../build/java.gypi',
1095 ], 1096 ],
1096 }, 1097 },
1097 ], # 'targets' 1098 ], # 'targets'
1098 'includes': [ 1099 'includes': [
1099 'chrome_android.gypi', 1100 'chrome_android.gypi',
1100 ]}, # 'includes' 1101 ]}, # 'includes'
1101 ], # OS=="android" 1102 ], # OS=="android"
1102 ], # 'conditions' 1103 ], # 'conditions'
1103 } 1104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698