| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 '..', | 161 '..', |
| 162 '<(INTERMEDIATE_DIR)', | 162 '<(INTERMEDIATE_DIR)', |
| 163 # Needed to access generated API headers. | 163 # Needed to access generated API headers. |
| 164 '<(SHARED_INTERMEDIATE_DIR)', | 164 '<(SHARED_INTERMEDIATE_DIR)', |
| 165 # Needed for grit. | 165 # Needed for grit. |
| 166 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 166 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 167 ], | 167 ], |
| 168 'sources': [ | 168 'sources': [ |
| 169 'browser/admin_policy.cc', | 169 'browser/admin_policy.cc', |
| 170 'browser/admin_policy.h', | 170 'browser/admin_policy.h', |
| 171 'browser/api/api_resource.cc', |
| 172 'browser/api/api_resource.h', |
| 173 'browser/api/api_resource_manager.h', |
| 171 'browser/api/async_api_function.cc', | 174 'browser/api/async_api_function.cc', |
| 172 'browser/api/async_api_function.h', | 175 'browser/api/async_api_function.h', |
| 173 'browser/api/extensions_api_client.cc', | 176 'browser/api/extensions_api_client.cc', |
| 174 'browser/api/extensions_api_client.h', | 177 'browser/api/extensions_api_client.h', |
| 175 'browser/api/storage/settings_namespace.cc', | 178 'browser/api/storage/settings_namespace.cc', |
| 176 'browser/api/storage/settings_namespace.h', | 179 'browser/api/storage/settings_namespace.h', |
| 177 'browser/api_activity_monitor.h', | 180 'browser/api_activity_monitor.h', |
| 178 'browser/app_sorting.h', | 181 'browser/app_sorting.h', |
| 179 'browser/blacklist_state.h', | 182 'browser/blacklist_state.h', |
| 180 'browser/browser_context_keyed_api_factory.h', | 183 'browser/browser_context_keyed_api_factory.h', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 'common/test_util.cc', | 286 'common/test_util.cc', |
| 284 'common/test_util.h', | 287 'common/test_util.h', |
| 285 'common/value_builder.cc', | 288 'common/value_builder.cc', |
| 286 'common/value_builder.h', | 289 'common/value_builder.h', |
| 287 ], | 290 ], |
| 288 # Disable c4267 warnings until we fix size_t to int truncations. | 291 # Disable c4267 warnings until we fix size_t to int truncations. |
| 289 'msvs_disabled_warnings': [ 4267, ], | 292 'msvs_disabled_warnings': [ 4267, ], |
| 290 }, | 293 }, |
| 291 ] | 294 ] |
| 292 } | 295 } |
| OLD | NEW |