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