OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 'mac/scoped_nsexception_enabler.mm', | 274 'mac/scoped_nsexception_enabler.mm', |
275 'mac/scoped_nsobject.h', | 275 'mac/scoped_nsobject.h', |
276 'mac/scoped_sending_event.h', | 276 'mac/scoped_sending_event.h', |
277 'mac/scoped_sending_event.mm', | 277 'mac/scoped_sending_event.mm', |
278 'mac/sdk_forward_declarations.h', | 278 'mac/sdk_forward_declarations.h', |
279 'memory/aligned_memory.cc', | 279 'memory/aligned_memory.cc', |
280 'memory/aligned_memory.h', | 280 'memory/aligned_memory.h', |
281 'memory/discardable_memory.cc', | 281 'memory/discardable_memory.cc', |
282 'memory/discardable_memory.h', | 282 'memory/discardable_memory.h', |
283 'memory/discardable_memory_android.cc', | 283 'memory/discardable_memory_android.cc', |
| 284 'memory/discardable_memory_emulated.cc', |
284 'memory/discardable_memory_mac.cc', | 285 'memory/discardable_memory_mac.cc', |
| 286 'memory/discardable_memory_provider.cc', |
| 287 'memory/discardable_memory_provider.h', |
285 'memory/linked_ptr.h', | 288 'memory/linked_ptr.h', |
286 'memory/manual_constructor.h', | 289 'memory/manual_constructor.h', |
287 'memory/memory_pressure_listener.cc', | 290 'memory/memory_pressure_listener.cc', |
288 'memory/memory_pressure_listener.h', | 291 'memory/memory_pressure_listener.h', |
289 'memory/raw_scoped_refptr_mismatch_checker.h', | 292 'memory/raw_scoped_refptr_mismatch_checker.h', |
290 'memory/ref_counted.cc', | 293 'memory/ref_counted.cc', |
291 'memory/ref_counted.h', | 294 'memory/ref_counted.h', |
292 'memory/ref_counted_delete_on_message_loop.h', | 295 'memory/ref_counted_delete_on_message_loop.h', |
293 'memory/ref_counted_memory.cc', | 296 'memory/ref_counted_memory.cc', |
294 'memory/ref_counted_memory.h', | 297 'memory/ref_counted_memory.h', |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 }, | 818 }, |
816 ], | 819 ], |
817 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { | 820 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { |
818 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 821 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
819 }, | 822 }, |
820 ], | 823 ], |
821 ['OS != "win" or >(nacl_untrusted_build)==1', { | 824 ['OS != "win" or >(nacl_untrusted_build)==1', { |
822 'sources/': [ ['exclude', '^win/'] ], | 825 'sources/': [ ['exclude', '^win/'] ], |
823 }, | 826 }, |
824 ], | 827 ], |
| 828 ['<(native_discardable_memory)==1', { |
| 829 'sources!': [ |
| 830 'memory/discardable_memory_emulated.cc', |
| 831 'memory/discardable_memory_provider.cc', |
| 832 'memory/discardable_memory_provider.h', |
| 833 ], |
| 834 }, |
| 835 ], |
825 ['OS != "android" or >(nacl_untrusted_build)==1', { | 836 ['OS != "android" or >(nacl_untrusted_build)==1', { |
826 'sources/': [ ['exclude', '^android/'] ], | 837 'sources/': [ ['exclude', '^android/'] ], |
827 }, | 838 }, |
828 ], | 839 ], |
829 ['OS == "win" and >(nacl_untrusted_build)==0', { | 840 ['OS == "win" and >(nacl_untrusted_build)==0', { |
830 'include_dirs': [ | 841 'include_dirs': [ |
831 '<(DEPTH)/third_party/wtl/include', | 842 '<(DEPTH)/third_party/wtl/include', |
832 ], | 843 ], |
833 'sources!': [ | 844 'sources!': [ |
834 'event_recorder_stubs.cc', | 845 'event_recorder_stubs.cc', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 898 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
888 'sources/': [ | 899 'sources/': [ |
889 ['exclude', '^third_party/nspr/'], | 900 ['exclude', '^third_party/nspr/'], |
890 ], | 901 ], |
891 }], | 902 }], |
892 ], | 903 ], |
893 }], | 904 }], |
894 ], | 905 ], |
895 }, | 906 }, |
896 } | 907 } |
OLD | NEW |