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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 1388943004: Add GCAPI to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « chrome/BUILD.gn ('k') | chrome/common/BUILD.gn » ('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 'branding_dir': 'app/theme/<(branding_path_component)', 8 'branding_dir': 'app/theme/<(branding_path_component)',
9 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )', 9 'branding_dir_100': 'app/theme/default_100_percent/<(branding_path_component )',
10 }, 10 },
11 'conditions': [ 11 'conditions': [
12 ['OS=="win"', { 12 ['OS=="win"', {
13 'targets': [ 13 'targets': [
14 { 14 {
15 # GN version: //chrome/installer/gcapi
15 'target_name': 'gcapi_dll', 16 'target_name': 'gcapi_dll',
16 'type': 'loadable_module', 17 'type': 'loadable_module',
17 'dependencies': [ 18 'dependencies': [
18 'gcapi_lib', 19 'gcapi_lib',
19 ], 20 ],
20 'include_dirs': [ 21 'include_dirs': [
21 '..', 22 '..',
22 ], 23 ],
23 'sources': [ 24 'sources': [
24 'installer/gcapi/gcapi.def', 25 'installer/gcapi/gcapi.def',
25 'installer/gcapi/gcapi_dll.cc', 26 'installer/gcapi/gcapi_dll.cc',
26 ], 27 ],
27 }, 28 },
28 { 29 {
30 # GN version: //chrome/installer/gcapi:lib
29 'target_name': 'gcapi_lib', 31 'target_name': 'gcapi_lib',
30 'type': 'static_library', 32 'type': 'static_library',
31 'dependencies': [ 33 'dependencies': [
32 'installer_util', 34 'installer_util',
33 '../base/base.gyp:base', 35 '../base/base.gyp:base',
34 '../chrome/chrome.gyp:launcher_support', 36 '../chrome/chrome.gyp:launcher_support',
35 '../components/components.gyp:variations', 37 '../components/components.gyp:variations',
36 '../google_update/google_update.gyp:google_update', 38 '../google_update/google_update.gyp:google_update',
37 ], 39 ],
38 'include_dirs': [ 40 'include_dirs': [
39 '..', 41 '..',
40 ], 42 ],
41 'sources': [ 43 'sources': [
42 'installer/gcapi/gcapi.cc', 44 'installer/gcapi/gcapi.cc',
43 'installer/gcapi/gcapi.h', 45 'installer/gcapi/gcapi.h',
44 'installer/gcapi/gcapi_omaha_experiment.cc', 46 'installer/gcapi/gcapi_omaha_experiment.cc',
45 'installer/gcapi/gcapi_omaha_experiment.h', 47 'installer/gcapi/gcapi_omaha_experiment.h',
46 'installer/gcapi/gcapi_reactivation.cc', 48 'installer/gcapi/gcapi_reactivation.cc',
47 'installer/gcapi/gcapi_reactivation.h', 49 'installer/gcapi/gcapi_reactivation.h',
48 ], 50 ],
49 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
50 'msvs_disabled_warnings': [ 4267, ],
51 }, 51 },
52 { 52 {
53 # GN version: //chrome/installer/gcapi:gcapi_test
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',
62 '../components/components.gyp:variations', 63 '../components/components.gyp:variations',
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 '../build/isolate.gypi', 1122 '../build/isolate.gypi',
1122 ], 1123 ],
1123 'sources': [ 1124 'sources': [
1124 'setup_unittests.isolate', 1125 'setup_unittests.isolate',
1125 ], 1126 ],
1126 }, 1127 },
1127 ], 1128 ],
1128 }], 1129 }],
1129 ], 1130 ],
1130 } 1131 }
OLDNEW
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698