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

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

Issue 2702103002: [ScreenOrientation] De-associate device.mojom.ScreenOrientation from legacy IPC channel.
Patch Set: Synchronize response of lock success with legacy IPC ViewMsg_Resize. Created 3 years, 10 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//ppapi/features/features.gni") 10 import("//ppapi/features/features.gni")
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 "renderer_webcookiejar_impl.cc", 326 "renderer_webcookiejar_impl.cc",
327 "renderer_webcookiejar_impl.h", 327 "renderer_webcookiejar_impl.h",
328 "resizing_mode_selector.cc", 328 "resizing_mode_selector.cc",
329 "resizing_mode_selector.h", 329 "resizing_mode_selector.h",
330 "sad_plugin.cc", 330 "sad_plugin.cc",
331 "sad_plugin.h", 331 "sad_plugin.h",
332 "savable_resources.cc", 332 "savable_resources.cc",
333 "savable_resources.h", 333 "savable_resources.h",
334 "scheduler/resource_dispatch_throttler.cc", 334 "scheduler/resource_dispatch_throttler.cc",
335 "scheduler/resource_dispatch_throttler.h", 335 "scheduler/resource_dispatch_throttler.h",
336 "screen_orientation/screen_orientation_dispatcher.cc",
337 "screen_orientation/screen_orientation_dispatcher.h",
338 "service_worker/embedded_worker_devtools_agent.cc", 336 "service_worker/embedded_worker_devtools_agent.cc",
339 "service_worker/embedded_worker_devtools_agent.h", 337 "service_worker/embedded_worker_devtools_agent.h",
340 "service_worker/embedded_worker_dispatcher.cc", 338 "service_worker/embedded_worker_dispatcher.cc",
341 "service_worker/embedded_worker_dispatcher.h", 339 "service_worker/embedded_worker_dispatcher.h",
342 "service_worker/embedded_worker_instance_client_impl.cc", 340 "service_worker/embedded_worker_instance_client_impl.cc",
343 "service_worker/embedded_worker_instance_client_impl.h", 341 "service_worker/embedded_worker_instance_client_impl.h",
344 "service_worker/service_worker_context_client.cc", 342 "service_worker/service_worker_context_client.cc",
345 "service_worker/service_worker_context_client.h", 343 "service_worker/service_worker_context_client.h",
346 "service_worker/service_worker_context_message_filter.cc", 344 "service_worker/service_worker_context_message_filter.cc",
347 "service_worker/service_worker_context_message_filter.h", 345 "service_worker/service_worker_context_message_filter.h",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 "//content/common", 423 "//content/common",
426 "//content/gpu:gpu_sources", 424 "//content/gpu:gpu_sources",
427 "//content/public/child:child_sources", 425 "//content/public/child:child_sources",
428 "//content/public/common:common_sources", 426 "//content/public/common:common_sources",
429 "//content/public/common:feature_h264_with_openh264_ffmpeg", 427 "//content/public/common:feature_h264_with_openh264_ffmpeg",
430 "//content/public/common:features", 428 "//content/public/common:features",
431 "//crypto:platform", 429 "//crypto:platform",
432 "//device/base/synchronization", 430 "//device/base/synchronization",
433 "//device/battery:mojo_bindings", 431 "//device/battery:mojo_bindings",
434 "//device/gamepad/public/interfaces", 432 "//device/gamepad/public/interfaces",
435 "//device/screen_orientation/public/interfaces",
436 "//device/sensors/public/cpp", 433 "//device/sensors/public/cpp",
437 "//device/sensors/public/interfaces", 434 "//device/sensors/public/interfaces",
438 "//device/usb/public/interfaces", 435 "//device/usb/public/interfaces",
439 "//device/vibration:mojo_bindings", 436 "//device/vibration:mojo_bindings",
440 "//gin", 437 "//gin",
441 "//gpu", 438 "//gpu",
442 "//gpu/command_buffer/client:gles2_interface", 439 "//gpu/command_buffer/client:gles2_interface",
443 "//jingle:jingle_glue", 440 "//jingle:jingle_glue",
444 "//media", 441 "//media",
445 "//media/blink", 442 "//media/blink",
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 # For the defines in mojo_media_config. 935 # For the defines in mojo_media_config.
939 public_configs = [ "//media/mojo/services:mojo_media_config" ] 936 public_configs = [ "//media/mojo/services:mojo_media_config" ]
940 } 937 }
941 938
942 if (!is_component_build) { 939 if (!is_component_build) {
943 public_deps = [ 940 public_deps = [
944 ":renderer", 941 ":renderer",
945 ] 942 ]
946 } 943 }
947 } 944 }
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698