| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 component("base") { | 7 component("base") { |
| 8 external = true | 8 external = true |
| 9 sources = [ | 9 sources = [ |
| 10 "../build/build_config.h", | 10 "../build/build_config.h", |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "memory/discardable_memory.cc", | 268 "memory/discardable_memory.cc", |
| 269 "memory/discardable_memory.h", | 269 "memory/discardable_memory.h", |
| 270 "memory/discardable_memory_allocator_android.cc", | 270 "memory/discardable_memory_allocator_android.cc", |
| 271 "memory/discardable_memory_allocator_android.h", | 271 "memory/discardable_memory_allocator_android.h", |
| 272 "memory/discardable_memory_android.cc", | 272 "memory/discardable_memory_android.cc", |
| 273 "memory/discardable_memory_android.h", | 273 "memory/discardable_memory_android.h", |
| 274 "memory/discardable_memory_emulated.cc", | 274 "memory/discardable_memory_emulated.cc", |
| 275 "memory/discardable_memory_emulated.h", | 275 "memory/discardable_memory_emulated.h", |
| 276 "memory/discardable_memory_linux.cc", | 276 "memory/discardable_memory_linux.cc", |
| 277 "memory/discardable_memory_mac.cc", | 277 "memory/discardable_memory_mac.cc", |
| 278 "memory/discardable_memory_malloc.cc", |
| 279 "memory/discardable_memory_malloc.h", |
| 278 "memory/discardable_memory_provider.cc", | 280 "memory/discardable_memory_provider.cc", |
| 279 "memory/discardable_memory_provider.h", | 281 "memory/discardable_memory_provider.h", |
| 280 "memory/discardable_memory_win.cc", | 282 "memory/discardable_memory_win.cc", |
| 281 "memory/linked_ptr.h", | 283 "memory/linked_ptr.h", |
| 282 "memory/manual_constructor.h", | 284 "memory/manual_constructor.h", |
| 283 "memory/memory_pressure_listener.cc", | 285 "memory/memory_pressure_listener.cc", |
| 284 "memory/memory_pressure_listener.h", | 286 "memory/memory_pressure_listener.h", |
| 285 "memory/raw_scoped_refptr_mismatch_checker.h", | 287 "memory/raw_scoped_refptr_mismatch_checker.h", |
| 286 "memory/ref_counted.cc", | 288 "memory/ref_counted.cc", |
| 287 "memory/ref_counted.h", | 289 "memory/ref_counted.h", |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 899 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 898 # 'msvs_disabled_warnings': [ | 900 # 'msvs_disabled_warnings': [ |
| 899 # 4267, | 901 # 4267, |
| 900 # ], | 902 # ], |
| 901 # }], | 903 # }], |
| 902 #], | 904 #], |
| 903 #'variables': { | 905 #'variables': { |
| 904 # 'optimize': 'max', | 906 # 'optimize': 'max', |
| 905 #}, | 907 #}, |
| 906 } | 908 } |
| OLD | NEW |