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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 'mac/scoped_nsexception_enabler.h', | 260 'mac/scoped_nsexception_enabler.h', |
261 'mac/scoped_nsexception_enabler.mm', | 261 'mac/scoped_nsexception_enabler.mm', |
262 'mac/scoped_sending_event.h', | 262 'mac/scoped_sending_event.h', |
263 'mac/scoped_sending_event.mm', | 263 'mac/scoped_sending_event.mm', |
264 'mac/sdk_forward_declarations.h', | 264 'mac/sdk_forward_declarations.h', |
265 'memory/aligned_memory.cc', | 265 'memory/aligned_memory.cc', |
266 'memory/aligned_memory.h', | 266 'memory/aligned_memory.h', |
267 'memory/discardable_memory.cc', | 267 'memory/discardable_memory.cc', |
268 'memory/discardable_memory.h', | 268 'memory/discardable_memory.h', |
269 'memory/discardable_memory_android.cc', | 269 'memory/discardable_memory_android.cc', |
| 270 'memory/discardable_memory_emulated.cc', |
270 'memory/discardable_memory_mac.cc', | 271 'memory/discardable_memory_mac.cc', |
271 'memory/linked_ptr.h', | 272 'memory/linked_ptr.h', |
272 'memory/manual_constructor.h', | 273 'memory/manual_constructor.h', |
273 'memory/raw_scoped_refptr_mismatch_checker.h', | 274 'memory/raw_scoped_refptr_mismatch_checker.h', |
274 'memory/ref_counted.cc', | 275 'memory/ref_counted.cc', |
275 'memory/ref_counted.h', | 276 'memory/ref_counted.h', |
276 'memory/ref_counted_memory.cc', | 277 'memory/ref_counted_memory.cc', |
277 'memory/ref_counted_memory.h', | 278 'memory/ref_counted_memory.h', |
278 'memory/scoped_handle.h', | 279 'memory/scoped_handle.h', |
279 'memory/scoped_nsobject.h', | 280 'memory/scoped_nsobject.h', |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 }, | 767 }, |
767 ], | 768 ], |
768 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { | 769 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { |
769 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 770 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
770 }, | 771 }, |
771 ], | 772 ], |
772 ['OS != "win" or >(nacl_untrusted_build)==1', { | 773 ['OS != "win" or >(nacl_untrusted_build)==1', { |
773 'sources/': [ ['exclude', '^win/'] ], | 774 'sources/': [ ['exclude', '^win/'] ], |
774 }, | 775 }, |
775 ], | 776 ], |
| 777 ['OS == "android" or OS == "mac"', { |
| 778 'sources!': [ |
| 779 'memory/discardable_memory_emulated.cc', |
| 780 ], |
| 781 }, |
| 782 ], |
776 ['OS != "android" or >(nacl_untrusted_build)==1', { | 783 ['OS != "android" or >(nacl_untrusted_build)==1', { |
777 'sources/': [ ['exclude', '^android/'] ], | 784 'sources/': [ ['exclude', '^android/'] ], |
778 }, | 785 }, |
779 ], | 786 ], |
780 ['OS == "win" and >(nacl_untrusted_build)==0', { | 787 ['OS == "win" and >(nacl_untrusted_build)==0', { |
781 'include_dirs': [ | 788 'include_dirs': [ |
782 '<(DEPTH)/third_party/wtl/include', | 789 '<(DEPTH)/third_party/wtl/include', |
783 ], | 790 ], |
784 'sources!': [ | 791 'sources!': [ |
785 'event_recorder_stubs.cc', | 792 'event_recorder_stubs.cc', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
836 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 843 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
837 'sources/': [ | 844 'sources/': [ |
838 ['exclude', '^third_party/nspr/'], | 845 ['exclude', '^third_party/nspr/'], |
839 ], | 846 ], |
840 }], | 847 }], |
841 ], | 848 ], |
842 }], | 849 }], |
843 ], | 850 ], |
844 }, | 851 }, |
845 } | 852 } |
OLD | NEW |