| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 'mac/scoped_nsexception_enabler.mm', | 281 'mac/scoped_nsexception_enabler.mm', |
| 282 'mac/scoped_nsobject.h', | 282 'mac/scoped_nsobject.h', |
| 283 'mac/scoped_sending_event.h', | 283 'mac/scoped_sending_event.h', |
| 284 'mac/scoped_sending_event.mm', | 284 'mac/scoped_sending_event.mm', |
| 285 'mac/sdk_forward_declarations.h', | 285 'mac/sdk_forward_declarations.h', |
| 286 'memory/aligned_memory.cc', | 286 'memory/aligned_memory.cc', |
| 287 'memory/aligned_memory.h', | 287 'memory/aligned_memory.h', |
| 288 'memory/discardable_memory.cc', | 288 'memory/discardable_memory.cc', |
| 289 'memory/discardable_memory.h', | 289 'memory/discardable_memory.h', |
| 290 'memory/discardable_memory_android.cc', | 290 'memory/discardable_memory_android.cc', |
| 291 'memory/discardable_memory_emulated.cc', |
| 291 'memory/discardable_memory_mac.cc', | 292 'memory/discardable_memory_mac.cc', |
| 293 'memory/discardable_memory_provider.cc', |
| 294 'memory/discardable_memory_provider.h', |
| 292 'memory/linked_ptr.h', | 295 'memory/linked_ptr.h', |
| 293 'memory/manual_constructor.h', | 296 'memory/manual_constructor.h', |
| 294 'memory/memory_pressure_listener.cc', | 297 'memory/memory_pressure_listener.cc', |
| 295 'memory/memory_pressure_listener.h', | 298 'memory/memory_pressure_listener.h', |
| 296 'memory/raw_scoped_refptr_mismatch_checker.h', | 299 'memory/raw_scoped_refptr_mismatch_checker.h', |
| 297 'memory/ref_counted.cc', | 300 'memory/ref_counted.cc', |
| 298 'memory/ref_counted.h', | 301 'memory/ref_counted.h', |
| 299 'memory/ref_counted_delete_on_message_loop.h', | 302 'memory/ref_counted_delete_on_message_loop.h', |
| 300 'memory/ref_counted_memory.cc', | 303 'memory/ref_counted_memory.cc', |
| 301 'memory/ref_counted_memory.h', | 304 'memory/ref_counted_memory.h', |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 }, | 832 }, |
| 830 ], | 833 ], |
| 831 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { | 834 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { |
| 832 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 835 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
| 833 }, | 836 }, |
| 834 ], | 837 ], |
| 835 ['OS != "win" or >(nacl_untrusted_build)==1', { | 838 ['OS != "win" or >(nacl_untrusted_build)==1', { |
| 836 'sources/': [ ['exclude', '^win/'] ], | 839 'sources/': [ ['exclude', '^win/'] ], |
| 837 }, | 840 }, |
| 838 ], | 841 ], |
| 842 ['<(native_discardable_memory)==1', { |
| 843 'sources!': [ |
| 844 'memory/discardable_memory_emulated.cc', |
| 845 'memory/discardable_memory_provider.cc', |
| 846 'memory/discardable_memory_provider.h', |
| 847 ], |
| 848 }, |
| 849 ], |
| 839 ['OS != "android" or >(nacl_untrusted_build)==1', { | 850 ['OS != "android" or >(nacl_untrusted_build)==1', { |
| 840 'sources/': [ ['exclude', '^android/'] ], | 851 'sources/': [ ['exclude', '^android/'] ], |
| 841 }, | 852 }, |
| 842 ], | 853 ], |
| 843 ['OS == "win" and >(nacl_untrusted_build)==0', { | 854 ['OS == "win" and >(nacl_untrusted_build)==0', { |
| 844 'include_dirs': [ | 855 'include_dirs': [ |
| 845 '<(DEPTH)/third_party/wtl/include', | 856 '<(DEPTH)/third_party/wtl/include', |
| 846 ], | 857 ], |
| 847 'sources!': [ | 858 'sources!': [ |
| 848 'event_recorder_stubs.cc', | 859 'event_recorder_stubs.cc', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 912 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
| 902 'sources/': [ | 913 'sources/': [ |
| 903 ['exclude', '^third_party/nspr/'], | 914 ['exclude', '^third_party/nspr/'], |
| 904 ], | 915 ], |
| 905 }], | 916 }], |
| 906 ], | 917 ], |
| 907 }], | 918 }], |
| 908 ], | 919 ], |
| 909 }, | 920 }, |
| 910 } | 921 } |
| OLD | NEW |