| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "//gpu", | 51 "//gpu", |
| 52 "//gpu/blink", | 52 "//gpu/blink", |
| 53 "//gpu/command_buffer/client:gles2_interface", | 53 "//gpu/command_buffer/client:gles2_interface", |
| 54 "//ipc/mojo", | 54 "//ipc/mojo", |
| 55 "//jingle:jingle_glue", | 55 "//jingle:jingle_glue", |
| 56 "//media", | 56 "//media", |
| 57 "//media/blink", | 57 "//media/blink", |
| 58 "//media/midi", | 58 "//media/midi", |
| 59 "//mojo/common", | 59 "//mojo/common", |
| 60 "//mojo/converters/geometry", | 60 "//mojo/converters/geometry", |
| 61 "//mojo/edk/js", |
| 61 "//mojo/environment:chromium", | 62 "//mojo/environment:chromium", |
| 62 "//mojo/public/cpp/bindings", | 63 "//mojo/public/cpp/bindings", |
| 63 "//mojo/public/js", | 64 "//mojo/public/js", |
| 64 "//mojo/shell/public/cpp", | 65 "//mojo/shell/public/cpp", |
| 65 "//mojo/shell/public/interfaces", | 66 "//mojo/shell/public/interfaces", |
| 66 "//net", | 67 "//net", |
| 67 "//sandbox", | 68 "//sandbox", |
| 68 "//skia", | 69 "//skia", |
| 69 "//skia/public", | 70 "//skia/public", |
| 70 "//storage/common", | 71 "//storage/common", |
| 71 "//third_party/WebKit/public:blink", | 72 "//third_party/WebKit/public:blink", |
| 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/npapi", | 76 "//third_party/npapi", |
| 77 "//third_party/widevine/cdm:version_h", | 77 "//third_party/widevine/cdm:version_h", |
| 78 "//ui/accessibility", | 78 "//ui/accessibility", |
| 79 "//ui/base", | 79 "//ui/base", |
| 80 "//ui/base/ime", | 80 "//ui/base/ime", |
| 81 "//ui/events:dom_keycode_converter", | 81 "//ui/events:dom_keycode_converter", |
| 82 "//ui/events:events_base", | 82 "//ui/events:events_base", |
| 83 "//ui/events/blink", | 83 "//ui/events/blink", |
| 84 "//ui/gl", | 84 "//ui/gl", |
| 85 "//ui/native_theme", | 85 "//ui/native_theme", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 if (use_ozone) { | 243 if (use_ozone) { |
| 244 deps += [ "//ui/ozone" ] | 244 deps += [ "//ui/ozone" ] |
| 245 } | 245 } |
| 246 } | 246 } |
| 247 | 247 |
| 248 buildflag_header("renderer_features") { | 248 buildflag_header("renderer_features") { |
| 249 header = "renderer_features.h" | 249 header = "renderer_features.h" |
| 250 | 250 |
| 251 flags = [ "RTC_USE_H264=$rtc_use_h264" ] | 251 flags = [ "RTC_USE_H264=$rtc_use_h264" ] |
| 252 } | 252 } |
| OLD | NEW |