| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'installer_util_target': 0, | 8 'installer_util_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'targets': [ | 91 'targets': [ |
| 92 { | 92 { |
| 93 'target_name': 'installer_util', | 93 'target_name': 'installer_util', |
| 94 'type': 'static_library', | 94 'type': 'static_library', |
| 95 'variables': { | 95 'variables': { |
| 96 'installer_util_target': 1, | 96 'installer_util_target': 1, |
| 97 }, | 97 }, |
| 98 'dependencies': [ | 98 'dependencies': [ |
| 99 'installer_util_strings', | 99 'installer_util_strings', |
| 100 'common_constants', | 100 'common_constants', |
| 101 'chrome_resources.gyp:chrome_resources', | |
| 102 'chrome_resources.gyp:chrome_strings', | |
| 103 '<(DEPTH)/base/base.gyp:base', | 101 '<(DEPTH)/base/base.gyp:base', |
| 104 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', | 102 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', |
| 105 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 103 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
| 104 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 105 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 106 '<(DEPTH)/content/content.gyp:content_common', | 106 '<(DEPTH)/content/content.gyp:content_common', |
| 107 '<(DEPTH)/courgette/courgette.gyp:courgette_lib', | 107 '<(DEPTH)/courgette/courgette.gyp:courgette_lib', |
| 108 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch', | 108 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch', |
| 109 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 109 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 110 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 110 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 111 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', | 111 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
| 112 ], | 112 ], |
| 113 'sources': [ | 113 'sources': [ |
| 114 'installer/util/chrome_browser_operations.cc', | 114 'installer/util/chrome_browser_operations.cc', |
| 115 'installer/util/chrome_browser_operations.h', | 115 'installer/util/chrome_browser_operations.h', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 }, | 175 }, |
| 176 ], | 176 ], |
| 177 }], | 177 }], |
| 178 ['OS!="win"', { | 178 ['OS!="win"', { |
| 179 'targets': [ | 179 'targets': [ |
| 180 { | 180 { |
| 181 'target_name': 'installer_util', | 181 'target_name': 'installer_util', |
| 182 'type': 'static_library', | 182 'type': 'static_library', |
| 183 'dependencies': [ | 183 'dependencies': [ |
| 184 'common_constants', | 184 'common_constants', |
| 185 'chrome_resources.gyp:chrome_resources', | 185 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 186 'chrome_resources.gyp:chrome_strings', | 186 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 187 ], | 187 ], |
| 188 'sources': [ | 188 'sources': [ |
| 189 'installer/util/master_preferences.cc', | 189 'installer/util/master_preferences.cc', |
| 190 'installer/util/master_preferences.h', | 190 'installer/util/master_preferences.h', |
| 191 'installer/util/master_preferences_constants.cc', | 191 'installer/util/master_preferences_constants.cc', |
| 192 'installer/util/master_preferences_constants.h', | 192 'installer/util/master_preferences_constants.h', |
| 193 ], | 193 ], |
| 194 'include_dirs': [ | 194 'include_dirs': [ |
| 195 '<(DEPTH)', | 195 '<(DEPTH)', |
| 196 ], | 196 ], |
| 197 'conditions': [ | 197 'conditions': [ |
| 198 ['component == "shared_library"', { | 198 ['component == "shared_library"', { |
| 199 'sources': [ '../content/public/common/content_switches.cc' ], | 199 'sources': [ '../content/public/common/content_switches.cc' ], |
| 200 'defines': [ 'COMPILE_CONTENT_STATICALLY'], | 200 'defines': [ 'COMPILE_CONTENT_STATICALLY'], |
| 201 }], | 201 }], |
| 202 ], | 202 ], |
| 203 } | 203 } |
| 204 ], | 204 ], |
| 205 }], | 205 }], |
| 206 | 206 |
| 207 ], | 207 ], |
| 208 } | 208 } |
| OLD | NEW |