| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//content/common/common.gni") | 8 import("//content/common/common.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//third_party/webrtc/build/webrtc.gni") | 10 import("//third_party/webrtc/build/webrtc.gni") |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//net", | 105 "//net", |
| 106 "//ppapi/c", | 106 "//ppapi/c", |
| 107 "//skia", | 107 "//skia", |
| 108 "//storage/common", | 108 "//storage/common", |
| 109 "//third_party/WebKit/public:blink_headers", | 109 "//third_party/WebKit/public:blink_headers", |
| 110 "//third_party/icu", | 110 "//third_party/icu", |
| 111 "//ui/accessibility", | 111 "//ui/accessibility", |
| 112 "//ui/base", | 112 "//ui/base", |
| 113 "//ui/gfx", | 113 "//ui/gfx", |
| 114 "//ui/gfx/ipc", | 114 "//ui/gfx/ipc", |
| 115 "//ui/gfx/ipc/skia", |
| 115 "//ui/surface", | 116 "//ui/surface", |
| 116 ] | 117 ] |
| 117 | 118 |
| 118 # //content/common needs to include public headers. | 119 # //content/common needs to include public headers. |
| 119 allow_circular_includes_from = [ "//content/common" ] | 120 allow_circular_includes_from = [ "//content/common" ] |
| 120 | 121 |
| 121 if (!enable_plugins) { | 122 if (!enable_plugins) { |
| 122 sources -= [ | 123 sources -= [ |
| 123 "pepper_plugin_info.cc", | 124 "pepper_plugin_info.cc", |
| 124 "pepper_plugin_info.h", | 125 "pepper_plugin_info.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 151 source_set("feature_h264_with_openh264_ffmpeg") { | 152 source_set("feature_h264_with_openh264_ffmpeg") { |
| 152 deps = [ | 153 deps = [ |
| 153 ":features", | 154 ":features", |
| 154 "//base", | 155 "//base", |
| 155 ] | 156 ] |
| 156 sources = [ | 157 sources = [ |
| 157 "feature_h264_with_openh264_ffmpeg.cc", | 158 "feature_h264_with_openh264_ffmpeg.cc", |
| 158 "feature_h264_with_openh264_ffmpeg.h", | 159 "feature_h264_with_openh264_ffmpeg.h", |
| 159 ] | 160 ] |
| 160 } | 161 } |
| OLD | NEW |