| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |