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/speech/proto/speech_proto.gyp:speech_proto', | 7 'browser/speech/proto/speech_proto.gyp:speech_proto', |
8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
10 '../google_apis/google_apis.gyp:google_apis', | 10 '../google_apis/google_apis.gyp:google_apis', |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 ['OS=="ios"', { | 866 ['OS=="ios"', { |
867 'sources/': [ | 867 'sources/': [ |
868 # iOS only needs a small portion of content; exclude all the | 868 # iOS only needs a small portion of content; exclude all the |
869 # implementation, and re-include what is used. | 869 # implementation, and re-include what is used. |
870 ['exclude', '\\.(cc|mm)$'], | 870 ['exclude', '\\.(cc|mm)$'], |
871 ['include', '_ios\\.(cc|mm)$'], | 871 ['include', '_ios\\.(cc|mm)$'], |
872 ['include', '^public/browser/content_browser_client\\.cc$'], | 872 ['include', '^public/browser/content_browser_client\\.cc$'], |
873 ['include', '^public/browser/notification_registrar\\.cc$'], | 873 ['include', '^public/browser/notification_registrar\\.cc$'], |
874 ['include', '^public/browser/speech_recognition_'], | 874 ['include', '^public/browser/speech_recognition_'], |
875 ['include', '^browser/browser_context\\.cc$'], | 875 ['include', '^browser/browser_context\\.cc$'], |
| 876 ['include', '^browser/browser_main_loop\\.cc$'], |
876 ['include', '^browser/browser_process_sub_thread\\.cc$'], | 877 ['include', '^browser/browser_process_sub_thread\\.cc$'], |
877 ['include', '^browser/notification_service_impl\\.cc$'], | 878 ['include', '^browser/notification_service_impl\\.cc$'], |
878 ], | 879 ], |
879 }, { # OS!="ios" | 880 }, { # OS!="ios" |
880 'dependencies': [ | 881 'dependencies': [ |
881 'browser/debugger/devtools_resources.gyp:devtools_resources', | 882 'browser/debugger/devtools_resources.gyp:devtools_resources', |
882 '../net/net.gyp:http_server', | 883 '../net/net.gyp:http_server', |
883 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 884 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
884 '../printing/printing.gyp:printing', | 885 '../printing/printing.gyp:printing', |
885 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 886 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 ['exclude', '^browser/renderer_host/java/'], | 1072 ['exclude', '^browser/renderer_host/java/'], |
1072 ], | 1073 ], |
1073 }], | 1074 }], |
1074 ['input_speech==0', { | 1075 ['input_speech==0', { |
1075 'sources/': [ | 1076 'sources/': [ |
1076 ['exclude', '^browser/speech/'], | 1077 ['exclude', '^browser/speech/'], |
1077 ], | 1078 ], |
1078 }], | 1079 }], |
1079 ], | 1080 ], |
1080 } | 1081 } |
OLD | NEW |