Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: content/renderer/BUILD.gn

Issue 2565913002: [Onion Soup] Move WebBluetoothImpl from //content/renderer/bluetooth to Blink's bluetooth module (Closed)
Patch Set: fixed layout tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "android/phone_number_detector.h", 44 "android/phone_number_detector.h",
45 "android/renderer_date_time_picker.cc", 45 "android/renderer_date_time_picker.cc",
46 "android/renderer_date_time_picker.h", 46 "android/renderer_date_time_picker.h",
47 "android/synchronous_compositor_filter.cc", 47 "android/synchronous_compositor_filter.cc",
48 "android/synchronous_compositor_filter.h", 48 "android/synchronous_compositor_filter.h",
49 "android/synchronous_compositor_frame_sink.cc", 49 "android/synchronous_compositor_frame_sink.cc",
50 "android/synchronous_compositor_frame_sink.h", 50 "android/synchronous_compositor_frame_sink.h",
51 "android/synchronous_compositor_proxy.cc", 51 "android/synchronous_compositor_proxy.cc",
52 "android/synchronous_compositor_proxy.h", 52 "android/synchronous_compositor_proxy.h",
53 "android/synchronous_compositor_registry.h", 53 "android/synchronous_compositor_registry.h",
54 "bluetooth/bluetooth_type_converters.cc",
55 "bluetooth/bluetooth_type_converters.h",
56 "bluetooth/web_bluetooth_impl.cc",
57 "bluetooth/web_bluetooth_impl.h",
58 "browser_plugin/browser_plugin.cc", 54 "browser_plugin/browser_plugin.cc",
59 "browser_plugin/browser_plugin.h", 55 "browser_plugin/browser_plugin.h",
60 "browser_plugin/browser_plugin_manager.cc", 56 "browser_plugin/browser_plugin_manager.cc",
61 "browser_plugin/browser_plugin_manager.h", 57 "browser_plugin/browser_plugin_manager.h",
62 "cache_storage/cache_storage_dispatcher.cc", 58 "cache_storage/cache_storage_dispatcher.cc",
63 "cache_storage/cache_storage_dispatcher.h", 59 "cache_storage/cache_storage_dispatcher.h",
64 "cache_storage/cache_storage_message_filter.cc", 60 "cache_storage/cache_storage_message_filter.cc",
65 "cache_storage/cache_storage_message_filter.h", 61 "cache_storage/cache_storage_message_filter.h",
66 "cache_storage/webserviceworkercachestorage_impl.cc", 62 "cache_storage/webserviceworkercachestorage_impl.cc",
67 "cache_storage/webserviceworkercachestorage_impl.h", 63 "cache_storage/webserviceworkercachestorage_impl.h",
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 "//content/child", 404 "//content/child",
409 "//content/common", 405 "//content/common",
410 "//content/gpu:gpu_sources", 406 "//content/gpu:gpu_sources",
411 "//content/public/child:child_sources", 407 "//content/public/child:child_sources",
412 "//content/public/common:common_sources", 408 "//content/public/common:common_sources",
413 "//content/public/common:feature_h264_with_openh264_ffmpeg", 409 "//content/public/common:feature_h264_with_openh264_ffmpeg",
414 "//content/public/common:features", 410 "//content/public/common:features",
415 "//crypto:platform", 411 "//crypto:platform",
416 "//device/base/synchronization", 412 "//device/base/synchronization",
417 "//device/battery:mojo_bindings", 413 "//device/battery:mojo_bindings",
418 "//device/bluetooth",
419 "//device/gamepad/public/interfaces", 414 "//device/gamepad/public/interfaces",
420 "//device/screen_orientation/public/interfaces", 415 "//device/screen_orientation/public/interfaces",
421 "//device/sensors/public/cpp", 416 "//device/sensors/public/cpp",
422 "//device/usb/public/interfaces", 417 "//device/usb/public/interfaces",
423 "//device/vibration:mojo_bindings", 418 "//device/vibration:mojo_bindings",
424 "//device/vr:mojo_bindings", 419 "//device/vr:mojo_bindings",
425 "//gin", 420 "//gin",
426 "//gpu", 421 "//gpu",
427 "//gpu/command_buffer/client:gles2_interface", 422 "//gpu/command_buffer/client:gles2_interface",
428 "//jingle:jingle_glue", 423 "//jingle:jingle_glue",
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 # For the defines in mojo_media_config. 911 # For the defines in mojo_media_config.
917 public_configs = [ "//media/mojo/services:mojo_media_config" ] 912 public_configs = [ "//media/mojo/services:mojo_media_config" ]
918 } 913 }
919 914
920 if (!is_component_build) { 915 if (!is_component_build) {
921 public_deps = [ 916 public_deps = [
922 ":renderer", 917 ":renderer",
923 ] 918 ]
924 } 919 }
925 } 920 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698