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

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

Issue 2885203004: Refactor content/renderer/device_sensors to use device/generic_sensor instead of device/sensors (Closed)
Patch Set: updated content/renderer/BUILD.gn Created 3 years, 7 months 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//content/common/features.gni") 9 import("//content/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "clipboard_utils.cc", 63 "clipboard_utils.cc",
64 "clipboard_utils.h", 64 "clipboard_utils.h",
65 "content_security_policy_util.cc", 65 "content_security_policy_util.cc",
66 "content_security_policy_util.h", 66 "content_security_policy_util.h",
67 "context_menu_params_builder.cc", 67 "context_menu_params_builder.cc",
68 "context_menu_params_builder.h", 68 "context_menu_params_builder.h",
69 "cursor_utils.cc", 69 "cursor_utils.cc",
70 "cursor_utils.h", 70 "cursor_utils.h",
71 "device_sensors/device_motion_event_pump.cc", 71 "device_sensors/device_motion_event_pump.cc",
72 "device_sensors/device_motion_event_pump.h", 72 "device_sensors/device_motion_event_pump.h",
73 "device_sensors/device_orientation_absolute_event_pump.cc",
74 "device_sensors/device_orientation_absolute_event_pump.h",
73 "device_sensors/device_orientation_event_pump.cc", 75 "device_sensors/device_orientation_event_pump.cc",
74 "device_sensors/device_orientation_event_pump.h", 76 "device_sensors/device_orientation_event_pump.h",
77 "device_sensors/device_orientation_util.cc",
78 "device_sensors/device_orientation_util.h",
75 "device_sensors/device_sensor_event_pump.h", 79 "device_sensors/device_sensor_event_pump.h",
76 "devtools/devtools_agent.cc", 80 "devtools/devtools_agent.cc",
77 "devtools/devtools_agent.h", 81 "devtools/devtools_agent.h",
78 "devtools/devtools_agent_filter.cc", 82 "devtools/devtools_agent_filter.cc",
79 "devtools/devtools_agent_filter.h", 83 "devtools/devtools_agent_filter.h",
80 "devtools/devtools_client.cc", 84 "devtools/devtools_client.cc",
81 "devtools/devtools_client.h", 85 "devtools/devtools_client.h",
82 "devtools/devtools_cpu_throttler.cc", 86 "devtools/devtools_cpu_throttler.cc",
83 "devtools/devtools_cpu_throttler.h", 87 "devtools/devtools_cpu_throttler.h",
84 "devtools/render_widget_screen_metrics_emulator.cc", 88 "devtools/render_widget_screen_metrics_emulator.cc",
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 "//content/common:features", 449 "//content/common:features",
446 "//content/gpu:gpu_sources", 450 "//content/gpu:gpu_sources",
447 "//content/public/child:child_sources", 451 "//content/public/child:child_sources",
448 "//content/public/common:feature_h264_with_openh264_ffmpeg", 452 "//content/public/common:feature_h264_with_openh264_ffmpeg",
449 "//content/public/common:features", 453 "//content/public/common:features",
450 "//content/public/common:service_names", 454 "//content/public/common:service_names",
451 "//crypto:platform", 455 "//crypto:platform",
452 "//device/base/synchronization", 456 "//device/base/synchronization",
453 "//device/gamepad/public/cpp:shared_with_blink", 457 "//device/gamepad/public/cpp:shared_with_blink",
454 "//device/gamepad/public/interfaces", 458 "//device/gamepad/public/interfaces",
459 "//device/generic_sensor/public/cpp",
455 "//device/screen_orientation/public/interfaces", 460 "//device/screen_orientation/public/interfaces",
456 "//device/sensors/public/cpp:full",
457 "//device/sensors/public/interfaces",
458 "//device/usb/public/interfaces", 461 "//device/usb/public/interfaces",
459 "//gin", 462 "//gin",
460 "//gpu", 463 "//gpu",
461 "//gpu/command_buffer/client:gles2_interface", 464 "//gpu/command_buffer/client:gles2_interface",
462 "//jingle:jingle_glue", 465 "//jingle:jingle_glue",
463 "//media", 466 "//media",
464 "//media/blink", 467 "//media/blink",
465 "//media/capture", 468 "//media/capture",
466 "//media/gpu", 469 "//media/gpu",
467 "//media/gpu/ipc/client", 470 "//media/gpu/ipc/client",
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 # For the defines in mojo_media_config. 987 # For the defines in mojo_media_config.
985 public_configs = [ "//media/mojo/services:mojo_media_config" ] 988 public_configs = [ "//media/mojo/services:mojo_media_config" ]
986 } 989 }
987 990
988 if (!is_component_build) { 991 if (!is_component_build) {
989 public_deps = [ 992 public_deps = [
990 ":renderer", 993 ":renderer",
991 ] 994 ]
992 } 995 }
993 } 996 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698