| 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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 89 |
| 90 source_set("common_sources") { | 90 source_set("common_sources") { |
| 91 # External code should depend on via ":common" above. | 91 # External code should depend on via ":common" above. |
| 92 visibility = [ "//content/*" ] | 92 visibility = [ "//content/*" ] |
| 93 | 93 |
| 94 sources = [ | 94 sources = [ |
| 95 "appcache_info.h", | 95 "appcache_info.h", |
| 96 "associated_interface_provider.h", | 96 "associated_interface_provider.h", |
| 97 "associated_interface_registry.h", | 97 "associated_interface_registry.h", |
| 98 "bindings_policy.h", | 98 "bindings_policy.h", |
| 99 "browser_controls_state.h", |
| 99 "browser_side_navigation_policy.cc", | 100 "browser_side_navigation_policy.cc", |
| 100 "browser_side_navigation_policy.h", | 101 "browser_side_navigation_policy.h", |
| 101 "cdm_info.h", | 102 "cdm_info.h", |
| 102 "child_process_host.h", | 103 "child_process_host.h", |
| 103 "child_process_host_delegate.cc", | 104 "child_process_host_delegate.cc", |
| 104 "child_process_host_delegate.h", | 105 "child_process_host_delegate.h", |
| 105 "child_process_sandbox_support_linux.h", | 106 "child_process_sandbox_support_linux.h", |
| 106 "color_suggestion.cc", | 107 "color_suggestion.cc", |
| 107 "color_suggestion.h", | 108 "color_suggestion.h", |
| 108 "common_param_traits.cc", | 109 "common_param_traits.cc", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "service_manager_connection.h", | 200 "service_manager_connection.h", |
| 200 "service_names.cc", | 201 "service_names.cc", |
| 201 "service_names.h", | 202 "service_names.h", |
| 202 "speech_recognition_error.h", | 203 "speech_recognition_error.h", |
| 203 "speech_recognition_grammar.h", | 204 "speech_recognition_grammar.h", |
| 204 "speech_recognition_result.cc", | 205 "speech_recognition_result.cc", |
| 205 "speech_recognition_result.h", | 206 "speech_recognition_result.h", |
| 206 "stop_find_action.h", | 207 "stop_find_action.h", |
| 207 "storage_quota_params.h", | 208 "storage_quota_params.h", |
| 208 "three_d_api_types.h", | 209 "three_d_api_types.h", |
| 209 "top_controls_state.h", | |
| 210 "transition_element.h", | 210 "transition_element.h", |
| 211 "url_constants.cc", | 211 "url_constants.cc", |
| 212 "url_constants.h", | 212 "url_constants.h", |
| 213 "url_fetcher.h", | 213 "url_fetcher.h", |
| 214 "url_utils.cc", | 214 "url_utils.cc", |
| 215 "url_utils.h", | 215 "url_utils.h", |
| 216 "user_agent.h", | 216 "user_agent.h", |
| 217 "web_preferences.cc", | 217 "web_preferences.cc", |
| 218 "web_preferences.h", | 218 "web_preferences.h", |
| 219 "webplugininfo.cc", | 219 "webplugininfo.cc", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "feature_h264_with_openh264_ffmpeg.cc", | 300 "feature_h264_with_openh264_ffmpeg.cc", |
| 301 "feature_h264_with_openh264_ffmpeg.h", | 301 "feature_h264_with_openh264_ffmpeg.h", |
| 302 ] | 302 ] |
| 303 } | 303 } |
| 304 | 304 |
| 305 mojom("interfaces") { | 305 mojom("interfaces") { |
| 306 sources = [ | 306 sources = [ |
| 307 "window_container_type.mojom", | 307 "window_container_type.mojom", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| OLD | NEW |