| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'common/extension_resource.cc', | 64 'common/extension_resource.cc', |
| 65 'common/extension_resource.h', | 65 'common/extension_resource.h', |
| 66 'common/extension_set.cc', | 66 'common/extension_set.cc', |
| 67 'common/extension_set.h', | 67 'common/extension_set.h', |
| 68 'common/extension_urls.cc', | 68 'common/extension_urls.cc', |
| 69 'common/extension_urls.h', | 69 'common/extension_urls.h', |
| 70 'common/extensions_client.cc', | 70 'common/extensions_client.cc', |
| 71 'common/extensions_client.h', | 71 'common/extensions_client.h', |
| 72 'common/feature_switch.cc', | 72 'common/feature_switch.cc', |
| 73 'common/feature_switch.h', | 73 'common/feature_switch.h', |
| 74 'common/features/api_feature.cc', |
| 75 'common/features/api_feature.h', |
| 76 'common/features/base_feature_provider.cc', |
| 77 'common/features/base_feature_provider.h', |
| 78 'common/features/complex_feature.cc', |
| 79 'common/features/complex_feature.h', |
| 74 'common/features/feature.cc', | 80 'common/features/feature.cc', |
| 75 'common/features/feature.h', | 81 'common/features/feature.h', |
| 76 'common/features/feature_provider.cc', | 82 'common/features/feature_provider.cc', |
| 77 'common/features/feature_provider.h', | 83 'common/features/feature_provider.h', |
| 84 'common/features/manifest_feature.cc', |
| 85 'common/features/manifest_feature.h', |
| 86 'common/features/permission_feature.cc', |
| 87 'common/features/permission_feature.h', |
| 88 'common/features/simple_feature.cc', |
| 89 'common/features/simple_feature.h', |
| 90 'common/features/simple_feature_filter.cc', |
| 91 'common/features/simple_feature_filter.h', |
| 78 'common/file_util.cc', | 92 'common/file_util.cc', |
| 79 'common/file_util.h', | 93 'common/file_util.h', |
| 80 'common/id_util.cc', | 94 'common/id_util.cc', |
| 81 'common/id_util.h', | 95 'common/id_util.h', |
| 82 'common/install_warning.cc', | 96 'common/install_warning.cc', |
| 83 'common/install_warning.h', | 97 'common/install_warning.h', |
| 84 'common/manifest.cc', | 98 'common/manifest.cc', |
| 85 'common/manifest.h', | 99 'common/manifest.h', |
| 86 'common/manifest_constants.cc', | 100 'common/manifest_constants.cc', |
| 87 'common/manifest_constants.h', | 101 'common/manifest_constants.h', |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 'common/test_util.cc', | 400 'common/test_util.cc', |
| 387 'common/test_util.h', | 401 'common/test_util.h', |
| 388 'common/value_builder.cc', | 402 'common/value_builder.cc', |
| 389 'common/value_builder.h', | 403 'common/value_builder.h', |
| 390 ], | 404 ], |
| 391 # Disable c4267 warnings until we fix size_t to int truncations. | 405 # Disable c4267 warnings until we fix size_t to int truncations. |
| 392 'msvs_disabled_warnings': [ 4267, ], | 406 'msvs_disabled_warnings': [ 4267, ], |
| 393 }, | 407 }, |
| 394 ] | 408 ] |
| 395 } | 409 } |
| OLD | NEW |