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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 'mac/scoped_nsexception_enabler.h', | 262 'mac/scoped_nsexception_enabler.h', |
263 'mac/scoped_nsexception_enabler.mm', | 263 'mac/scoped_nsexception_enabler.mm', |
264 'mac/scoped_sending_event.h', | 264 'mac/scoped_sending_event.h', |
265 'mac/scoped_sending_event.mm', | 265 'mac/scoped_sending_event.mm', |
266 'mac/sdk_forward_declarations.h', | 266 'mac/sdk_forward_declarations.h', |
267 'memory/aligned_memory.cc', | 267 'memory/aligned_memory.cc', |
268 'memory/aligned_memory.h', | 268 'memory/aligned_memory.h', |
269 'memory/discardable_memory.cc', | 269 'memory/discardable_memory.cc', |
270 'memory/discardable_memory.h', | 270 'memory/discardable_memory.h', |
271 'memory/discardable_memory_android.cc', | 271 'memory/discardable_memory_android.cc', |
| 272 'memory/discardable_memory_emulated.cc', |
272 'memory/discardable_memory_mac.cc', | 273 'memory/discardable_memory_mac.cc', |
| 274 'memory/discardable_memory_provider.cc', |
| 275 'memory/discardable_memory_provider.h', |
273 'memory/linked_ptr.h', | 276 'memory/linked_ptr.h', |
274 'memory/manual_constructor.h', | 277 'memory/manual_constructor.h', |
275 'memory/memory_pressure_listener.cc', | 278 'memory/memory_pressure_listener.cc', |
276 'memory/memory_pressure_listener.h', | 279 'memory/memory_pressure_listener.h', |
277 'memory/raw_scoped_refptr_mismatch_checker.h', | 280 'memory/raw_scoped_refptr_mismatch_checker.h', |
278 'memory/ref_counted.cc', | 281 'memory/ref_counted.cc', |
279 'memory/ref_counted.h', | 282 'memory/ref_counted.h', |
280 'memory/ref_counted_memory.cc', | 283 'memory/ref_counted_memory.cc', |
281 'memory/ref_counted_memory.h', | 284 'memory/ref_counted_memory.h', |
282 'memory/scoped_handle.h', | 285 'memory/scoped_handle.h', |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 }, | 773 }, |
771 ], | 774 ], |
772 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { | 775 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { |
773 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 776 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
774 }, | 777 }, |
775 ], | 778 ], |
776 ['OS != "win" or >(nacl_untrusted_build)==1', { | 779 ['OS != "win" or >(nacl_untrusted_build)==1', { |
777 'sources/': [ ['exclude', '^win/'] ], | 780 'sources/': [ ['exclude', '^win/'] ], |
778 }, | 781 }, |
779 ], | 782 ], |
| 783 ['OS == "android" or OS == "mac"', { |
| 784 'sources!': [ |
| 785 'memory/discardable_memory_emulated.cc', |
| 786 'memory/discardable_memory_provider.cc', |
| 787 'memory/discardable_memory_provider.h', |
| 788 ], |
| 789 }, |
| 790 ], |
780 ['OS != "android" or >(nacl_untrusted_build)==1', { | 791 ['OS != "android" or >(nacl_untrusted_build)==1', { |
781 'sources/': [ ['exclude', '^android/'] ], | 792 'sources/': [ ['exclude', '^android/'] ], |
782 }, | 793 }, |
783 ], | 794 ], |
784 ['OS == "win" and >(nacl_untrusted_build)==0', { | 795 ['OS == "win" and >(nacl_untrusted_build)==0', { |
785 'include_dirs': [ | 796 'include_dirs': [ |
786 '<(DEPTH)/third_party/wtl/include', | 797 '<(DEPTH)/third_party/wtl/include', |
787 ], | 798 ], |
788 'sources!': [ | 799 'sources!': [ |
789 'event_recorder_stubs.cc', | 800 'event_recorder_stubs.cc', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 851 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
841 'sources/': [ | 852 'sources/': [ |
842 ['exclude', '^third_party/nspr/'], | 853 ['exclude', '^third_party/nspr/'], |
843 ], | 854 ], |
844 }], | 855 }], |
845 ], | 856 ], |
846 }], | 857 }], |
847 ], | 858 ], |
848 }, | 859 }, |
849 } | 860 } |
OLD | NEW |