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 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['chromeos==1', { | 8 ['chromeos==1', { |
9 'use_libgps%': 1, | 9 'use_libgps%': 1, |
10 }, { # chromeos==0 | 10 }, { # chromeos==0 |
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'], | 913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'], |
914 ], | 914 ], |
915 }, { # OS!="ios" | 915 }, { # OS!="ios" |
916 'dependencies': [ | 916 'dependencies': [ |
917 'browser/debugger/devtools_resources.gyp:devtools_resources', | 917 'browser/debugger/devtools_resources.gyp:devtools_resources', |
918 '../cc/cc.gyp:cc', | 918 '../cc/cc.gyp:cc', |
919 '../net/net.gyp:http_server', | 919 '../net/net.gyp:http_server', |
920 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 920 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
921 '../printing/printing.gyp:printing', | 921 '../printing/printing.gyp:printing', |
922 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 922 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
923 '../third_party/libyuv/libyuv.gyp:libyuv', | |
924 '../ui/surface/surface.gyp:surface', | 923 '../ui/surface/surface.gyp:surface', |
925 '../webkit/support/webkit_support.gyp:webkit_resources', | 924 '../webkit/support/webkit_support.gyp:webkit_resources', |
926 '../webkit/support/webkit_support.gyp:webkit_storage', | 925 '../webkit/support/webkit_support.gyp:webkit_storage', |
927 '../webkit/support/webkit_support.gyp:webkit_strings', | 926 '../webkit/support/webkit_support.gyp:webkit_strings', |
928 ], | 927 ], |
929 }], | 928 }], |
930 ['OS!="mac" and OS!="ios"', { | 929 ['OS!="mac" and OS!="ios"', { |
931 'dependencies': [ | 930 'dependencies': [ |
932 '../sandbox/sandbox.gyp:sandbox', | 931 '../sandbox/sandbox.gyp:sandbox', |
933 ], | 932 ], |
934 }], | 933 }], |
| 934 ['OS!="android" and OS!="ios"', { |
| 935 'dependencies': [ |
| 936 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 937 ], |
| 938 }], |
935 ['enable_webrtc==1', { | 939 ['enable_webrtc==1', { |
936 'sources': [ | 940 'sources': [ |
937 'browser/renderer_host/p2p/socket_host.cc', | 941 'browser/renderer_host/p2p/socket_host.cc', |
938 'browser/renderer_host/p2p/socket_host.h', | 942 'browser/renderer_host/p2p/socket_host.h', |
939 'browser/renderer_host/p2p/socket_host_tcp.cc', | 943 'browser/renderer_host/p2p/socket_host_tcp.cc', |
940 'browser/renderer_host/p2p/socket_host_tcp.h', | 944 'browser/renderer_host/p2p/socket_host_tcp.h', |
941 'browser/renderer_host/p2p/socket_host_tcp_server.cc', | 945 'browser/renderer_host/p2p/socket_host_tcp_server.cc', |
942 'browser/renderer_host/p2p/socket_host_tcp_server.h', | 946 'browser/renderer_host/p2p/socket_host_tcp_server.h', |
943 'browser/renderer_host/p2p/socket_host_udp.cc', | 947 'browser/renderer_host/p2p/socket_host_udp.cc', |
944 'browser/renderer_host/p2p/socket_host_udp.h', | 948 'browser/renderer_host/p2p/socket_host_udp.h', |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1133 # the USE_LIBGPS setting propagates to the "real" dependent target, |
1130 # we use all_dependent_settings here. | 1134 # we use all_dependent_settings here. |
1131 'all_dependent_settings': { | 1135 'all_dependent_settings': { |
1132 'defines': [ | 1136 'defines': [ |
1133 'USE_LIBGPS', | 1137 'USE_LIBGPS', |
1134 ], | 1138 ], |
1135 }, | 1139 }, |
1136 }], | 1140 }], |
1137 ], | 1141 ], |
1138 } | 1142 } |
OLD | NEW |