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

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

Issue 1710553002: Add option for SKP capture without reencoding images (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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("//build/buildflag_header.gni") 7 import("//build/buildflag_header.gni")
8 import("//content/renderer/renderer.gni") 8 import("//content/renderer/renderer.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
(...skipping 15 matching lines...) Expand all
26 defines = [] 26 defines = []
27 27
28 deps = [ 28 deps = [
29 ":renderer_features", 29 ":renderer_features",
30 "//base:i18n", 30 "//base:i18n",
31 "//cc", 31 "//cc",
32 "//cc/blink", 32 "//cc/blink",
33 "//cc/proto", 33 "//cc/proto",
34 "//cc/surfaces", 34 "//cc/surfaces",
35 "//cc/surfaces:surface_id", 35 "//cc/surfaces:surface_id",
36 "//chrome/common:constants",
36 "//components/scheduler:scheduler", 37 "//components/scheduler:scheduler",
37 "//components/url_formatter", 38 "//components/url_formatter",
38 "//components/webusb", 39 "//components/webusb",
39 "//content:resources", 40 "//content:resources",
40 "//content/common:mojo_bindings", 41 "//content/common:mojo_bindings",
41 "//content/public/child:child_sources", 42 "//content/public/child:child_sources",
42 "//content/public/common:common_sources", 43 "//content/public/common:common_sources",
43 "//content/public/common:mojo_bindings", 44 "//content/public/common:mojo_bindings",
44 "//crypto:platform", 45 "//crypto:platform",
45 "//device/battery:mojo_bindings", 46 "//device/battery:mojo_bindings",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 if (use_ozone) { 244 if (use_ozone) {
244 deps += [ "//ui/ozone" ] 245 deps += [ "//ui/ozone" ]
245 } 246 }
246 } 247 }
247 248
248 buildflag_header("renderer_features") { 249 buildflag_header("renderer_features") {
249 header = "renderer_features.h" 250 header = "renderer_features.h"
250 251
251 flags = [ "RTC_USE_H264=$rtc_use_h264" ] 252 flags = [ "RTC_USE_H264=$rtc_use_h264" ]
252 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698