OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 'dependencies': [ | 272 'dependencies': [ |
273 'extensions_browser', | 273 'extensions_browser', |
274 'extensions_common', | 274 'extensions_common', |
275 '../base/base.gyp:base', | 275 '../base/base.gyp:base', |
276 '../testing/gtest.gyp:gtest', | 276 '../testing/gtest.gyp:gtest', |
277 ], | 277 ], |
278 'include_dirs': [ | 278 'include_dirs': [ |
279 '..', | 279 '..', |
280 ], | 280 ], |
281 'sources': [ | 281 'sources': [ |
| 282 'browser/test_extensions_browser_client.cc', |
| 283 'browser/test_extensions_browser_client.h', |
282 'browser/test_management_policy.cc', | 284 'browser/test_management_policy.cc', |
283 'browser/test_management_policy.h', | 285 'browser/test_management_policy.h', |
284 'common/extension_builder.cc', | 286 'common/extension_builder.cc', |
285 'common/extension_builder.h', | 287 'common/extension_builder.h', |
286 'common/test_util.cc', | 288 'common/test_util.cc', |
287 'common/test_util.h', | 289 'common/test_util.h', |
288 'common/value_builder.cc', | 290 'common/value_builder.cc', |
289 'common/value_builder.h', | 291 'common/value_builder.h', |
290 ], | 292 ], |
291 # Disable c4267 warnings until we fix size_t to int truncations. | 293 # Disable c4267 warnings until we fix size_t to int truncations. |
292 'msvs_disabled_warnings': [ 4267, ], | 294 'msvs_disabled_warnings': [ 4267, ], |
293 }, | 295 }, |
294 ] | 296 ] |
295 } | 297 } |
OLD | NEW |