| OLD | NEW |
| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//mojo/public/cpp/bindings", | 62 "//mojo/public/cpp/bindings", |
| 63 "//mojo/public/js", | 63 "//mojo/public/js", |
| 64 "//mojo/shell/public/cpp", | 64 "//mojo/shell/public/cpp", |
| 65 "//mojo/shell/public/interfaces", | 65 "//mojo/shell/public/interfaces", |
| 66 "//net", | 66 "//net", |
| 67 "//sandbox", | 67 "//sandbox", |
| 68 "//skia", | 68 "//skia", |
| 69 "//skia/public", | 69 "//skia/public", |
| 70 "//storage/common", | 70 "//storage/common", |
| 71 "//third_party/WebKit/public:blink", | 71 "//third_party/WebKit/public:blink", |
| 72 "//third_party/boringssl", |
| 72 "//third_party/icu", | 73 "//third_party/icu", |
| 73 "//third_party/libjingle", | 74 "//third_party/libjingle", |
| 74 "//third_party/libyuv", | 75 "//third_party/libyuv", |
| 75 "//third_party/mojo/src/mojo/edk/js", | 76 "//third_party/mojo/src/mojo/edk/js", |
| 76 "//third_party/npapi", | 77 "//third_party/npapi", |
| 77 "//third_party/widevine/cdm:version_h", | 78 "//third_party/widevine/cdm:version_h", |
| 78 "//ui/accessibility", | 79 "//ui/accessibility", |
| 79 "//ui/base", | 80 "//ui/base", |
| 80 "//ui/base/ime", | 81 "//ui/base/ime", |
| 81 "//ui/events:dom_keycode_converter", | 82 "//ui/events:dom_keycode_converter", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |