| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 'mac/scoped_nsexception_enabler.h', | 266 'mac/scoped_nsexception_enabler.h', |
| 267 'mac/scoped_nsexception_enabler.mm', | 267 'mac/scoped_nsexception_enabler.mm', |
| 268 'mac/scoped_sending_event.h', | 268 'mac/scoped_sending_event.h', |
| 269 'mac/scoped_sending_event.mm', | 269 'mac/scoped_sending_event.mm', |
| 270 'mac/sdk_forward_declarations.h', | 270 'mac/sdk_forward_declarations.h', |
| 271 'memory/aligned_memory.cc', | 271 'memory/aligned_memory.cc', |
| 272 'memory/aligned_memory.h', | 272 'memory/aligned_memory.h', |
| 273 'memory/discardable_memory.cc', | 273 'memory/discardable_memory.cc', |
| 274 'memory/discardable_memory.h', | 274 'memory/discardable_memory.h', |
| 275 'memory/discardable_memory_android.cc', | 275 'memory/discardable_memory_android.cc', |
| 276 'memory/discardable_memory_emulated.cc', |
| 276 'memory/discardable_memory_mac.cc', | 277 'memory/discardable_memory_mac.cc', |
| 278 'memory/discardable_memory_provider.cc', |
| 279 'memory/discardable_memory_provider.h', |
| 277 'memory/linked_ptr.h', | 280 'memory/linked_ptr.h', |
| 278 'memory/manual_constructor.h', | 281 'memory/manual_constructor.h', |
| 279 'memory/memory_pressure_listener.cc', | 282 'memory/memory_pressure_listener.cc', |
| 280 'memory/memory_pressure_listener.h', | 283 'memory/memory_pressure_listener.h', |
| 281 'memory/raw_scoped_refptr_mismatch_checker.h', | 284 'memory/raw_scoped_refptr_mismatch_checker.h', |
| 282 'memory/ref_counted.cc', | 285 'memory/ref_counted.cc', |
| 283 'memory/ref_counted.h', | 286 'memory/ref_counted.h', |
| 284 'memory/ref_counted_delete_on_message_loop.h', | 287 'memory/ref_counted_delete_on_message_loop.h', |
| 285 'memory/ref_counted_memory.cc', | 288 'memory/ref_counted_memory.cc', |
| 286 'memory/ref_counted_memory.h', | 289 'memory/ref_counted_memory.h', |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 }, | 780 }, |
| 778 ], | 781 ], |
| 779 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { | 782 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { |
| 780 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 783 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
| 781 }, | 784 }, |
| 782 ], | 785 ], |
| 783 ['OS != "win" or >(nacl_untrusted_build)==1', { | 786 ['OS != "win" or >(nacl_untrusted_build)==1', { |
| 784 'sources/': [ ['exclude', '^win/'] ], | 787 'sources/': [ ['exclude', '^win/'] ], |
| 785 }, | 788 }, |
| 786 ], | 789 ], |
| 790 ['OS == "android" or OS == "mac"', { |
| 791 'sources!': [ |
| 792 'memory/discardable_memory_emulated.cc', |
| 793 'memory/discardable_memory_provider.cc', |
| 794 'memory/discardable_memory_provider.h', |
| 795 ], |
| 796 }, |
| 797 ], |
| 787 ['OS != "android" or >(nacl_untrusted_build)==1', { | 798 ['OS != "android" or >(nacl_untrusted_build)==1', { |
| 788 'sources/': [ ['exclude', '^android/'] ], | 799 'sources/': [ ['exclude', '^android/'] ], |
| 789 }, | 800 }, |
| 790 ], | 801 ], |
| 791 ['OS == "win" and >(nacl_untrusted_build)==0', { | 802 ['OS == "win" and >(nacl_untrusted_build)==0', { |
| 792 'include_dirs': [ | 803 'include_dirs': [ |
| 793 '<(DEPTH)/third_party/wtl/include', | 804 '<(DEPTH)/third_party/wtl/include', |
| 794 ], | 805 ], |
| 795 'sources!': [ | 806 'sources!': [ |
| 796 'event_recorder_stubs.cc', | 807 'event_recorder_stubs.cc', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 858 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
| 848 'sources/': [ | 859 'sources/': [ |
| 849 ['exclude', '^third_party/nspr/'], | 860 ['exclude', '^third_party/nspr/'], |
| 850 ], | 861 ], |
| 851 }], | 862 }], |
| 852 ], | 863 ], |
| 853 }], | 864 }], |
| 854 ], | 865 ], |
| 855 }, | 866 }, |
| 856 } | 867 } |
| OLD | NEW |