| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 sources += [ | 110 sources += [ |
| 111 "webrtc_ip_handling_policy.cc", | 111 "webrtc_ip_handling_policy.cc", |
| 112 "webrtc_ip_handling_policy.h", | 112 "webrtc_ip_handling_policy.h", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 } | 115 } |
| 116 | 116 |
| 117 mojom("mojo_bindings") { | 117 mojom("mojo_bindings") { |
| 118 sources = [ | 118 sources = [ |
| 119 "background_sync.mojom", | 119 "background_sync.mojom", |
| 120 "mojo_geoposition.mojom", | |
| 121 "permission_status.mojom", | |
| 122 "service_worker_event_status.mojom", | 120 "service_worker_event_status.mojom", |
| 123 ] | 121 ] |
| 124 } | 122 } |
| 125 | 123 |
| 126 buildflag_header("features") { | 124 buildflag_header("features") { |
| 127 header = "features.h" | 125 header = "features.h" |
| 128 | 126 |
| 129 flags = [ "RTC_USE_H264=$rtc_use_h264" ] | 127 flags = [ "RTC_USE_H264=$rtc_use_h264" ] |
| 130 } | 128 } |
| 131 | 129 |
| 132 source_set("feature_h264_with_openh264_ffmpeg") { | 130 source_set("feature_h264_with_openh264_ffmpeg") { |
| 133 deps = [ | 131 deps = [ |
| 134 ":features", | 132 ":features", |
| 135 ] | 133 ] |
| 136 sources = [ | 134 sources = [ |
| 137 "feature_h264_with_openh264_ffmpeg.cc", | 135 "feature_h264_with_openh264_ffmpeg.cc", |
| 138 "feature_h264_with_openh264_ffmpeg.h", | 136 "feature_h264_with_openh264_ffmpeg.h", |
| 139 ] | 137 ] |
| 140 } | 138 } |
| OLD | NEW |