| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 'type': 'static_library', | 268 'type': 'static_library', |
| 269 'dependencies': [ | 269 'dependencies': [ |
| 270 'extensions_browser', | 270 'extensions_browser', |
| 271 'extensions_common', | 271 'extensions_common', |
| 272 '../base/base.gyp:base', | 272 '../base/base.gyp:base', |
| 273 ], | 273 ], |
| 274 'include_dirs': [ | 274 'include_dirs': [ |
| 275 '..', | 275 '..', |
| 276 ], | 276 ], |
| 277 'sources': [ | 277 'sources': [ |
| 278 'browser/test_extensions_browser_client.cc', |
| 279 'browser/test_extensions_browser_client.h', |
| 278 'browser/test_management_policy.cc', | 280 'browser/test_management_policy.cc', |
| 279 'browser/test_management_policy.h', | 281 'browser/test_management_policy.h', |
| 280 'common/extension_builder.cc', | 282 'common/extension_builder.cc', |
| 281 'common/extension_builder.h', | 283 'common/extension_builder.h', |
| 282 'common/test_util.cc', | 284 'common/test_util.cc', |
| 283 'common/test_util.h', | 285 'common/test_util.h', |
| 284 'common/value_builder.cc', | 286 'common/value_builder.cc', |
| 285 'common/value_builder.h', | 287 'common/value_builder.h', |
| 286 ], | 288 ], |
| 287 # Disable c4267 warnings until we fix size_t to int truncations. | 289 # Disable c4267 warnings until we fix size_t to int truncations. |
| 288 'msvs_disabled_warnings': [ 4267, ], | 290 'msvs_disabled_warnings': [ 4267, ], |
| 289 }, | 291 }, |
| 290 ] | 292 ] |
| 291 } | 293 } |
| OLD | NEW |