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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 1291763002: Componentize kExperimentLabelSeparator & BuildExperimentDateString. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove "#if defined(OS_WIN)" from google_update_constants.cc Created 5 years, 4 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
« no previous file with comments | « no previous file | chrome/chrome_installer_util.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'variables': { 6 'variables': {
7 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 'libpeer_target_type%': 'static_library', 8 'libpeer_target_type%': 'static_library',
9 'branding_dir': 'app/theme/<(branding_path_component)', 9 'branding_dir': 'app/theme/<(branding_path_component)',
10 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )', 10 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )',
(...skipping 15 matching lines...) Expand all
26 'installer/gcapi/gcapi_dll.cc', 26 'installer/gcapi/gcapi_dll.cc',
27 ], 27 ],
28 }, 28 },
29 { 29 {
30 'target_name': 'gcapi_lib', 30 'target_name': 'gcapi_lib',
31 'type': 'static_library', 31 'type': 'static_library',
32 'dependencies': [ 32 'dependencies': [
33 'installer_util', 33 'installer_util',
34 '../base/base.gyp:base', 34 '../base/base.gyp:base',
35 '../chrome/chrome.gyp:launcher_support', 35 '../chrome/chrome.gyp:launcher_support',
36 '../components/components.gyp:variations',
36 '../google_update/google_update.gyp:google_update', 37 '../google_update/google_update.gyp:google_update',
37 ], 38 ],
38 'include_dirs': [ 39 'include_dirs': [
39 '..', 40 '..',
40 ], 41 ],
41 'sources': [ 42 'sources': [
42 'installer/gcapi/gcapi.cc', 43 'installer/gcapi/gcapi.cc',
43 'installer/gcapi/gcapi.h', 44 'installer/gcapi/gcapi.h',
44 'installer/gcapi/gcapi_omaha_experiment.cc', 45 'installer/gcapi/gcapi_omaha_experiment.cc',
45 'installer/gcapi/gcapi_omaha_experiment.h', 46 'installer/gcapi/gcapi_omaha_experiment.h',
46 'installer/gcapi/gcapi_reactivation.cc', 47 'installer/gcapi/gcapi_reactivation.cc',
47 'installer/gcapi/gcapi_reactivation.h', 48 'installer/gcapi/gcapi_reactivation.h',
48 ], 49 ],
49 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 50 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
50 'msvs_disabled_warnings': [ 4267, ], 51 'msvs_disabled_warnings': [ 4267, ],
51 }, 52 },
52 { 53 {
53 'target_name': 'gcapi_test', 54 'target_name': 'gcapi_test',
54 'type': 'executable', 55 'type': 'executable',
55 'dependencies': [ 56 'dependencies': [
56 'common', 57 'common',
57 'gcapi_dll', 58 'gcapi_dll',
58 'gcapi_lib', 59 'gcapi_lib',
59 'installer_util', 60 'installer_util',
60 '../base/base.gyp:base', 61 '../base/base.gyp:base',
61 '../base/base.gyp:test_support_base', 62 '../base/base.gyp:test_support_base',
63 '../components/components.gyp:variations',
62 '../testing/gtest.gyp:gtest', 64 '../testing/gtest.gyp:gtest',
63 ], 65 ],
64 'include_dirs': [ 66 'include_dirs': [
65 '..', 67 '..',
66 ], 68 ],
67 'sources': [ 69 'sources': [
68 'installer/gcapi/gcapi_last_run_test.cc', 70 'installer/gcapi/gcapi_last_run_test.cc',
69 'installer/gcapi/gcapi_omaha_experiment_test.cc', 71 'installer/gcapi/gcapi_omaha_experiment_test.cc',
70 'installer/gcapi/gcapi_reactivation_test.cc', 72 'installer/gcapi/gcapi_reactivation_test.cc',
71 'installer/gcapi/gcapi_test.cc', 73 'installer/gcapi/gcapi_test.cc',
72 'installer/gcapi/gcapi_test.rc', 74 'installer/gcapi/gcapi_test.rc',
73 'installer/gcapi/gcapi_test_registry_overrider.cc', 75 'installer/gcapi/gcapi_test_registry_overrider.cc',
74 'installer/gcapi/gcapi_test_registry_overrider.h', 76 'installer/gcapi/gcapi_test_registry_overrider.h',
75 'installer/gcapi/resource.h', 77 'installer/gcapi/resource.h',
76 ], 78 ],
77 }, 79 },
78 { 80 {
79 # GN version: //chrome/installer/util:installer_util_unittests 81 # GN version: //chrome/installer/util:installer_util_unittests
80 'target_name': 'installer_util_unittests', 82 'target_name': 'installer_util_unittests',
81 'type': 'executable', 83 'type': 'executable',
82 'dependencies': [ 84 'dependencies': [
83 'installer_util', 85 'installer_util',
84 'installer_util_strings', 86 'installer_util_strings',
85 'installer/upgrade_test.gyp:alternate_version_generator_lib', 87 'installer/upgrade_test.gyp:alternate_version_generator_lib',
86 '../base/base.gyp:base', 88 '../base/base.gyp:base',
87 '../base/base.gyp:base_i18n', 89 '../base/base.gyp:base_i18n',
88 '../base/base.gyp:test_support_base', 90 '../base/base.gyp:test_support_base',
89 '../chrome/chrome.gyp:chrome_version_resources', 91 '../chrome/chrome.gyp:chrome_version_resources',
92 '../components/components.gyp:variations',
90 '../content/content.gyp:content_common', 93 '../content/content.gyp:content_common',
91 '../testing/gmock.gyp:gmock', 94 '../testing/gmock.gyp:gmock',
92 '../testing/gtest.gyp:gtest', 95 '../testing/gtest.gyp:gtest',
93 ], 96 ],
94 'include_dirs': [ 97 'include_dirs': [
95 '..', 98 '..',
96 ], 99 ],
97 'sources': [ 100 'sources': [
98 # List duplicated in GN build. 101 # List duplicated in GN build.
99 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 102 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
(...skipping 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 '../build/isolate.gypi', 1105 '../build/isolate.gypi',
1103 ], 1106 ],
1104 'sources': [ 1107 'sources': [
1105 'setup_unittests.isolate', 1108 'setup_unittests.isolate',
1106 ], 1109 ],
1107 }, 1110 },
1108 ], 1111 ],
1109 }], 1112 }],
1110 ], 1113 ],
1111 } 1114 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_installer_util.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698