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

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

Issue 1892083002: Generic Sensor API : Ambient Light Sensor API. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/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 29 matching lines...) Expand all
40 "//content/common", 40 "//content/common",
41 "//content/gpu:gpu_sources", 41 "//content/gpu:gpu_sources",
42 "//content/public/child:child_sources", 42 "//content/public/child:child_sources",
43 "//content/public/common:common_sources", 43 "//content/public/common:common_sources",
44 "//content/public/common:feature_h264_with_openh264_ffmpeg", 44 "//content/public/common:feature_h264_with_openh264_ffmpeg",
45 "//content/public/common:features", 45 "//content/public/common:features",
46 "//content/public/common:mojo_bindings", 46 "//content/public/common:mojo_bindings",
47 "//crypto:platform", 47 "//crypto:platform",
48 "//device/battery:mojo_bindings", 48 "//device/battery:mojo_bindings",
49 "//device/bluetooth", 49 "//device/bluetooth",
50 "//device/sensor:mojo_bindings",
50 "//device/usb/public/interfaces", 51 "//device/usb/public/interfaces",
51 "//device/vibration:mojo_bindings", 52 "//device/vibration:mojo_bindings",
52 "//gin", 53 "//gin",
53 "//gpu", 54 "//gpu",
54 "//gpu/blink", 55 "//gpu/blink",
55 "//gpu/command_buffer/client:gles2_interface", 56 "//gpu/command_buffer/client:gles2_interface",
56 "//ipc/mojo", 57 "//ipc/mojo",
57 "//jingle:jingle_glue", 58 "//jingle:jingle_glue",
58 "//media", 59 "//media",
59 "//media/blink", 60 "//media/blink",
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 # For the defines in mojo_media_config. 263 # For the defines in mojo_media_config.
263 public_configs = [ "//media/mojo/services:mojo_media_config" ] 264 public_configs = [ "//media/mojo/services:mojo_media_config" ]
264 } 265 }
265 266
266 if (!is_component_build) { 267 if (!is_component_build) {
267 public_deps = [ 268 public_deps = [
268 ":renderer", 269 ":renderer",
269 ] 270 ]
270 } 271 }
271 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698