| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 # Disable c4267 warnings until we fix size_t to int truncations. | 256 # Disable c4267 warnings until we fix size_t to int truncations. |
| 257 'msvs_disabled_warnings': [ 4267, ], | 257 'msvs_disabled_warnings': [ 4267, ], |
| 258 }, | 258 }, |
| 259 { | 259 { |
| 260 'target_name': 'extensions_test_support', | 260 'target_name': 'extensions_test_support', |
| 261 'type': 'static_library', | 261 'type': 'static_library', |
| 262 'dependencies': [ | 262 'dependencies': [ |
| 263 'extensions_browser', | 263 'extensions_browser', |
| 264 'extensions_common', | 264 'extensions_common', |
| 265 '../base/base.gyp:base', | 265 '../base/base.gyp:base', |
| 266 '../testing/gtest.gyp:gtest', |
| 266 ], | 267 ], |
| 267 'include_dirs': [ | 268 'include_dirs': [ |
| 268 '..', | 269 '..', |
| 269 ], | 270 ], |
| 270 'sources': [ | 271 'sources': [ |
| 271 'browser/test_management_policy.cc', | 272 'browser/test_management_policy.cc', |
| 272 'browser/test_management_policy.h', | 273 'browser/test_management_policy.h', |
| 273 'common/extension_builder.cc', | 274 'common/extension_builder.cc', |
| 274 'common/extension_builder.h', | 275 'common/extension_builder.h', |
| 275 'common/test_util.cc', | 276 'common/test_util.cc', |
| 276 'common/test_util.h', | 277 'common/test_util.h', |
| 277 'common/value_builder.cc', | 278 'common/value_builder.cc', |
| 278 'common/value_builder.h', | 279 'common/value_builder.h', |
| 279 ], | 280 ], |
| 280 # Disable c4267 warnings until we fix size_t to int truncations. | 281 # Disable c4267 warnings until we fix size_t to int truncations. |
| 281 'msvs_disabled_warnings': [ 4267, ], | 282 'msvs_disabled_warnings': [ 4267, ], |
| 282 }, | 283 }, |
| 283 ] | 284 ] |
| 284 } | 285 } |
| OLD | NEW |