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 '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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'installer/util/lzma_util.h', | 147 'installer/util/lzma_util.h', |
148 'installer/util/master_preferences.cc', | 148 'installer/util/master_preferences.cc', |
149 'installer/util/master_preferences.h', | 149 'installer/util/master_preferences.h', |
150 'installer/util/product.h', | 150 'installer/util/product.h', |
151 'installer/util/product.cc', | 151 'installer/util/product.cc', |
152 'installer/util/product_operations.h', | 152 'installer/util/product_operations.h', |
153 'installer/util/self_cleaning_temp_dir.cc', | 153 'installer/util/self_cleaning_temp_dir.cc', |
154 'installer/util/self_cleaning_temp_dir.h', | 154 'installer/util/self_cleaning_temp_dir.h', |
155 'installer/util/shell_util.cc', | 155 'installer/util/shell_util.cc', |
156 'installer/util/shell_util.h', | 156 'installer/util/shell_util.h', |
| 157 'installer/util/user_experiment.cc', |
| 158 'installer/util/user_experiment.h', |
157 ], | 159 ], |
158 'conditions': [ | 160 'conditions': [ |
159 ['component=="shared_library"', { | 161 ['component=="shared_library"', { |
160 'sources': [ '../content/public/common/content_switches.cc' ], | 162 'sources': [ '../content/public/common/content_switches.cc' ], |
161 'defines': [ 'COMPILE_CONTENT_STATICALLY'], | 163 'defines': [ 'COMPILE_CONTENT_STATICALLY'], |
162 }, { | 164 }, { |
163 'dependencies': ['<(DEPTH)/content/content.gyp:content_common'], | 165 'dependencies': ['<(DEPTH)/content/content.gyp:content_common'], |
164 }], | 166 }], |
165 ], | 167 ], |
166 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 168 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 'sources': [ '../content/public/common/content_switches.cc' ], | 221 'sources': [ '../content/public/common/content_switches.cc' ], |
220 'defines': [ 'COMPILE_CONTENT_STATICALLY'], | 222 'defines': [ 'COMPILE_CONTENT_STATICALLY'], |
221 }], | 223 }], |
222 ], | 224 ], |
223 } | 225 } |
224 ], | 226 ], |
225 }], | 227 }], |
226 | 228 |
227 ], | 229 ], |
228 } | 230 } |
OLD | NEW |