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

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

Issue 1960843002: [OnionSoup] Move background_sync.mojom from //content to //third_party/WebKit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dcheng@'s comment Created 4 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/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 27 matching lines...) Expand all
38 "//components/scheduler:scheduler", 38 "//components/scheduler:scheduler",
39 "//components/url_formatter", 39 "//components/url_formatter",
40 "//content:resources", 40 "//content:resources",
41 "//content/child", 41 "//content/child",
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",
49 "//crypto:platform", 48 "//crypto:platform",
50 "//device/battery:mojo_bindings", 49 "//device/battery:mojo_bindings",
51 "//device/bluetooth", 50 "//device/bluetooth",
52 "//device/usb/public/interfaces", 51 "//device/usb/public/interfaces",
53 "//device/vibration:mojo_bindings", 52 "//device/vibration:mojo_bindings",
54 "//gin", 53 "//gin",
55 "//gpu", 54 "//gpu",
56 "//gpu/command_buffer/client:gles2_interface", 55 "//gpu/command_buffer/client:gles2_interface",
57 "//ipc/mojo", 56 "//ipc/mojo",
58 "//jingle:jingle_glue", 57 "//jingle:jingle_glue",
59 "//media", 58 "//media",
60 "//media/blink", 59 "//media/blink",
61 "//media/gpu", 60 "//media/gpu",
62 "//media/gpu/ipc/client", 61 "//media/gpu/ipc/client",
63 "//media/gpu/ipc/common", 62 "//media/gpu/ipc/common",
64 "//media/midi", 63 "//media/midi",
65 "//mojo/common", 64 "//mojo/common",
66 "//mojo/converters/geometry", 65 "//mojo/converters/geometry",
67 "//mojo/edk/js", 66 "//mojo/edk/js",
68 "//mojo/public/cpp/bindings", 67 "//mojo/public/cpp/bindings",
69 "//mojo/public/js", 68 "//mojo/public/js",
70 "//net", 69 "//net",
71 "//sandbox", 70 "//sandbox",
72 "//services/shell/public/cpp", 71 "//services/shell/public/cpp",
73 "//services/shell/public/interfaces", 72 "//services/shell/public/interfaces",
74 "//skia", 73 "//skia",
75 "//skia/public", 74 "//skia/public",
76 "//storage/common", 75 "//storage/common",
77 "//third_party/WebKit/public:blink", 76 "//third_party/WebKit/public:blink",
77 "//third_party/WebKit/public:mojo_bindings",
78 "//third_party/boringssl", 78 "//third_party/boringssl",
79 "//third_party/icu", 79 "//third_party/icu",
80 "//third_party/libjingle", 80 "//third_party/libjingle",
81 "//third_party/libyuv", 81 "//third_party/libyuv",
82 "//third_party/widevine/cdm:version_h", 82 "//third_party/widevine/cdm:version_h",
83 "//ui/accessibility", 83 "//ui/accessibility",
84 "//ui/base", 84 "//ui/base",
85 "//ui/base/ime", 85 "//ui/base/ime",
86 "//ui/display", 86 "//ui/display",
87 "//ui/events:dom_keycode_converter", 87 "//ui/events:dom_keycode_converter",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 # For the defines in mojo_media_config. 259 # For the defines in mojo_media_config.
260 public_configs = [ "//media/mojo/services:mojo_media_config" ] 260 public_configs = [ "//media/mojo/services:mojo_media_config" ]
261 } 261 }
262 262
263 if (!is_component_build) { 263 if (!is_component_build) {
264 public_deps = [ 264 public_deps = [
265 ":renderer", 265 ":renderer",
266 ] 266 ]
267 } 267 }
268 } 268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698