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 'dependencies': [ | 6 'dependencies': [ |
7 'browser/debugger/devtools_resources.gyp:devtools_resources', | 7 'browser/debugger/devtools_resources.gyp:devtools_resources', |
8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
10 '../net/net.gyp:http_server', | 10 '../net/net.gyp:http_server', |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 'browser/in_process_webkit/session_storage_namespace_impl.h', | 369 'browser/in_process_webkit/session_storage_namespace_impl.h', |
370 'browser/in_process_webkit/webkit_thread.cc', | 370 'browser/in_process_webkit/webkit_thread.cc', |
371 'browser/in_process_webkit/webkit_thread.h', | 371 'browser/in_process_webkit/webkit_thread.h', |
372 'browser/intents/intent_injector.cc', | 372 'browser/intents/intent_injector.cc', |
373 'browser/intents/intent_injector.h', | 373 'browser/intents/intent_injector.h', |
374 'browser/intents/web_intents_dispatcher_impl.cc', | 374 'browser/intents/web_intents_dispatcher_impl.cc', |
375 'browser/intents/web_intents_dispatcher_impl.h', | 375 'browser/intents/web_intents_dispatcher_impl.h', |
376 'browser/load_from_memory_cache_details.cc', | 376 'browser/load_from_memory_cache_details.cc', |
377 'browser/load_from_memory_cache_details.h', | 377 'browser/load_from_memory_cache_details.h', |
378 'browser/load_notification_details.h', | 378 'browser/load_notification_details.h', |
| 379 'browser/mac/media_device_notifications.h', |
| 380 'browser/mac/media_device_notifications.mm', |
379 'browser/mach_broker_mac.cc', | 381 'browser/mach_broker_mac.cc', |
380 'browser/mach_broker_mac.h', | 382 'browser/mach_broker_mac.h', |
| 383 'browser/media_device_notifications_linux.cc', |
| 384 'browser/media_device_notifications_linux.h', |
381 'browser/mime_registry_message_filter.cc', | 385 'browser/mime_registry_message_filter.cc', |
382 'browser/mime_registry_message_filter.h', | 386 'browser/mime_registry_message_filter.h', |
383 'browser/net/browser_online_state_observer.cc', | 387 'browser/net/browser_online_state_observer.cc', |
384 'browser/net/browser_online_state_observer.h', | 388 'browser/net/browser_online_state_observer.h', |
385 # TODO: These should be moved to test_support (see below), but | 389 # TODO: These should be moved to test_support (see below), but |
386 # are currently used by production code in automation_provider.cc. | 390 # are currently used by production code in automation_provider.cc. |
387 'browser/net/url_request_failed_dns_job.cc', | 391 'browser/net/url_request_failed_dns_job.cc', |
388 'browser/net/url_request_failed_dns_job.h', | 392 'browser/net/url_request_failed_dns_job.h', |
389 'browser/net/url_request_mock_http_job.cc', | 393 'browser/net/url_request_mock_http_job.cc', |
390 'browser/net/url_request_mock_http_job.h', | 394 'browser/net/url_request_mock_http_job.h', |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 '../third_party/flac/flac.gyp:libflac', | 791 '../third_party/flac/flac.gyp:libflac', |
788 ]}], | 792 ]}], |
789 ['OS=="mac"', { | 793 ['OS=="mac"', { |
790 'sources': [ | 794 'sources': [ |
791 # Build necessary Mozilla sources | 795 # Build necessary Mozilla sources |
792 '../third_party/mozilla/ComplexTextInputPanel.h', | 796 '../third_party/mozilla/ComplexTextInputPanel.h', |
793 '../third_party/mozilla/ComplexTextInputPanel.mm', | 797 '../third_party/mozilla/ComplexTextInputPanel.mm', |
794 '../third_party/mozilla/NSPasteboard+Utils.h', | 798 '../third_party/mozilla/NSPasteboard+Utils.h', |
795 '../third_party/mozilla/NSPasteboard+Utils.mm', | 799 '../third_party/mozilla/NSPasteboard+Utils.mm', |
796 ], | 800 ], |
| 801 'link_settings': { |
| 802 'libraries': [ |
| 803 '$(SDKROOT)/System/Library/Frameworks/DiskArbitration.framework', |
| 804 ], |
| 805 }, |
797 'dependencies': [ | 806 'dependencies': [ |
798 '../base/base.gyp:closure_blocks_leopard_compat', | 807 '../base/base.gyp:closure_blocks_leopard_compat', |
799 ], | 808 ], |
800 }, { # OS!="mac" | 809 }, { # OS!="mac" |
801 'dependencies': [ | 810 'dependencies': [ |
802 '../sandbox/sandbox.gyp:sandbox', | 811 '../sandbox/sandbox.gyp:sandbox', |
803 ], | 812 ], |
804 }], | 813 }], |
805 ['chromeos==1', { | 814 ['chromeos==1', { |
806 'dependencies': [ | 815 'dependencies': [ |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 ], | 885 ], |
877 }], | 886 }], |
878 ['input_speech==0', { | 887 ['input_speech==0', { |
879 'sources/': [ | 888 'sources/': [ |
880 ['exclude', '^browser/speech/'], | 889 ['exclude', '^browser/speech/'], |
881 ], | 890 ], |
882 }], | 891 }], |
883 ], | 892 ], |
884 } | 893 } |
885 | 894 |
OLD | NEW |