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

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

Issue 1912363002: [webnfc] Add default implementation for nfc mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for component gn build. 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 import("//third_party/webrtc/build/webrtc.gni") 9 import("//third_party/webrtc/build/webrtc.gni")
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "//content/common", 42 "//content/common",
43 "//content/gpu:gpu_sources", 43 "//content/gpu:gpu_sources",
44 "//content/public/child:child_sources", 44 "//content/public/child:child_sources",
45 "//content/public/common:common_sources", 45 "//content/public/common:common_sources",
46 "//content/public/common:feature_h264_with_openh264_ffmpeg", 46 "//content/public/common:feature_h264_with_openh264_ffmpeg",
47 "//content/public/common:features", 47 "//content/public/common:features",
48 "//content/public/common:mojo_bindings", 48 "//content/public/common:mojo_bindings",
49 "//crypto:platform", 49 "//crypto:platform",
50 "//device/battery:mojo_bindings", 50 "//device/battery:mojo_bindings",
51 "//device/bluetooth", 51 "//device/bluetooth",
52 "//device/nfc:mojo_bindings",
52 "//device/usb/public/interfaces", 53 "//device/usb/public/interfaces",
53 "//device/vibration:mojo_bindings", 54 "//device/vibration:mojo_bindings",
54 "//gin", 55 "//gin",
55 "//gpu", 56 "//gpu",
56 "//gpu/blink", 57 "//gpu/blink",
57 "//gpu/command_buffer/client:gles2_interface", 58 "//gpu/command_buffer/client:gles2_interface",
58 "//ipc/mojo", 59 "//ipc/mojo",
59 "//jingle:jingle_glue", 60 "//jingle:jingle_glue",
60 "//media", 61 "//media",
61 "//media/blink", 62 "//media/blink",
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 # For the defines in mojo_media_config. 269 # For the defines in mojo_media_config.
269 public_configs = [ "//media/mojo/services:mojo_media_config" ] 270 public_configs = [ "//media/mojo/services:mojo_media_config" ]
270 } 271 }
271 272
272 if (!is_component_build) { 273 if (!is_component_build) {
273 public_deps = [ 274 public_deps = [
274 ":renderer", 275 ":renderer",
275 ] 276 ]
276 } 277 }
277 } 278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698