| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 sources += [ | 131 sources += [ |
| 132 "webrtc_ip_handling_policy.cc", | 132 "webrtc_ip_handling_policy.cc", |
| 133 "webrtc_ip_handling_policy.h", | 133 "webrtc_ip_handling_policy.h", |
| 134 ] | 134 ] |
| 135 } | 135 } |
| 136 } | 136 } |
| 137 | 137 |
| 138 mojom("mojo_bindings") { | 138 mojom("mojo_bindings") { |
| 139 sources = [ | 139 sources = [ |
| 140 "background_sync.mojom", | 140 "background_sync.mojom", |
| 141 "mojo_geoposition.mojom", | |
| 142 "permission_status.mojom", | |
| 143 "service_worker_event_status.mojom", | 141 "service_worker_event_status.mojom", |
| 144 ] | 142 ] |
| 145 } | 143 } |
| 146 | 144 |
| 147 buildflag_header("features") { | 145 buildflag_header("features") { |
| 148 header = "features.h" | 146 header = "features.h" |
| 149 | 147 |
| 150 flags = [ "RTC_USE_H264=$rtc_use_h264" ] | 148 flags = [ "RTC_USE_H264=$rtc_use_h264" ] |
| 151 } | 149 } |
| 152 | 150 |
| 153 source_set("feature_h264_with_openh264_ffmpeg") { | 151 source_set("feature_h264_with_openh264_ffmpeg") { |
| 154 deps = [ | 152 deps = [ |
| 155 ":features", | 153 ":features", |
| 156 "//base", | 154 "//base", |
| 157 ] | 155 ] |
| 158 sources = [ | 156 sources = [ |
| 159 "feature_h264_with_openh264_ffmpeg.cc", | 157 "feature_h264_with_openh264_ffmpeg.cc", |
| 160 "feature_h264_with_openh264_ffmpeg.h", | 158 "feature_h264_with_openh264_ffmpeg.h", |
| 161 ] | 159 ] |
| 162 } | 160 } |
| OLD | NEW |