| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//build/config/compiler:no_size_t_to_int_warning", | 21 "//build/config/compiler:no_size_t_to_int_warning", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 deps = [ | 24 deps = [ |
| 25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but | 25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but |
| 26 # those don't cross component boundaries. | 26 # those don't cross component boundaries. |
| 27 "//crypto:platform", | 27 "//crypto:platform", |
| 28 "//base/allocator", | 28 "//base/allocator", |
| 29 "//cc", | 29 "//cc", |
| 30 "//cc/blink", | 30 "//cc/blink", |
| 31 "//components/url_formatter", |
| 31 "//components/scheduler:scheduler", | 32 "//components/scheduler:scheduler", |
| 32 "//components/url_formatter", | |
| 33 "//components/webusb", | |
| 34 "//content:resources", | 33 "//content:resources", |
| 35 "//content/common:mojo_bindings", | 34 "//content/common:mojo_bindings", |
| 36 "//content/public/child:child_sources", | 35 "//content/public/child:child_sources", |
| 37 "//content/public/common:common_sources", | 36 "//content/public/common:common_sources", |
| 38 "//content/public/common:mojo_bindings", | 37 "//content/public/common:mojo_bindings", |
| 39 "//device/battery:mojo_bindings", | 38 "//device/battery:mojo_bindings", |
| 40 "//device/vibration:mojo_bindings", | 39 "//device/vibration:mojo_bindings", |
| 41 "//gin", | 40 "//gin", |
| 42 "//gpu", | 41 "//gpu", |
| 43 "//gpu/command_buffer/client:gles2_interface", | 42 "//gpu/command_buffer/client:gles2_interface", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ] | 96 ] |
| 98 | 97 |
| 99 # Add back the Linux file which Android shares. | 98 # Add back the Linux file which Android shares. |
| 100 set_sources_assignment_filter([]) | 99 set_sources_assignment_filter([]) |
| 101 sources += [ "render_view_linux.cc" ] | 100 sources += [ "render_view_linux.cc" ] |
| 102 | 101 |
| 103 deps += [ | 102 deps += [ |
| 104 "//third_party/android_tools:cpu_features", | 103 "//third_party/android_tools:cpu_features", |
| 105 "//third_party/libphonenumber", | 104 "//third_party/libphonenumber", |
| 106 ] | 105 ] |
| 107 | |
| 108 deps -= [ "//components/webusb" ] | |
| 109 } else { | 106 } else { |
| 110 sources -= [ | 107 sources -= [ |
| 111 "java/gin_java_bridge_dispatcher.cc", | 108 "java/gin_java_bridge_dispatcher.cc", |
| 112 "java/gin_java_bridge_dispatcher.h", | 109 "java/gin_java_bridge_dispatcher.h", |
| 113 "java/gin_java_bridge_object.cc", | 110 "java/gin_java_bridge_object.cc", |
| 114 "java/gin_java_bridge_object.h", | 111 "java/gin_java_bridge_object.h", |
| 115 "java/gin_java_bridge_value_converter.cc", | 112 "java/gin_java_bridge_value_converter.cc", |
| 116 "java/gin_java_bridge_value_converter.h", | 113 "java/gin_java_bridge_value_converter.h", |
| 117 "java/gin_java_function_invocation_helper.cc", | 114 "java/gin_java_function_invocation_helper.cc", |
| 118 "java/gin_java_function_invocation_helper.h", | 115 "java/gin_java_function_invocation_helper.h", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 209 |
| 213 if (enable_webvr) { | 210 if (enable_webvr) { |
| 214 sources += [ | 211 sources += [ |
| 215 "vr/vr_dispatcher.cc", | 212 "vr/vr_dispatcher.cc", |
| 216 "vr/vr_dispatcher.h", | 213 "vr/vr_dispatcher.h", |
| 217 "vr/vr_type_converters.cc", | 214 "vr/vr_type_converters.cc", |
| 218 "vr/vr_type_converters.h", | 215 "vr/vr_type_converters.h", |
| 219 ] | 216 ] |
| 220 } | 217 } |
| 221 } | 218 } |
| OLD | NEW |