Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Eliminate unnecessary PostTask Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("browser") { 8 group("browser") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
11 "//content", 11 "//content",
12 ] 12 ]
13 } else { 13 } else {
14 public_deps = [ 14 public_deps = [
15 ":browser_sources", 15 ":browser_sources",
16 ] 16 ]
17 } 17 }
18 } 18 }
19 19
20 source_set("browser_sources") { 20 source_set("browser_sources") {
21 # External code should depend on via ":browser" above. 21 # External code should depend on via ":browser" above.
22 visibility = [ "//content/*" ] 22 visibility = [ "//content/*" ]
23 23
24 sources = [ 24 sources = [
25 "android/app_web_message_port_service.h",
26 "android/browser_media_player_manager_register.cc", 25 "android/browser_media_player_manager_register.cc",
27 "android/browser_media_player_manager_register.h", 26 "android/browser_media_player_manager_register.h",
28 "android/compositor.h", 27 "android/compositor.h",
29 "android/compositor_client.h", 28 "android/compositor_client.h",
30 "android/content_protocol_handler.h", 29 "android/content_protocol_handler.h",
31 "android/content_view_core.h", 30 "android/content_view_core.h",
32 "android/content_view_layer_renderer.h", 31 "android/content_view_layer_renderer.h",
33 "android/devtools_auth.h", 32 "android/devtools_auth.h",
34 "android/java_interfaces.h", 33 "android/java_interfaces.h",
35 "android/synchronous_compositor.cc", 34 "android/synchronous_compositor.cc",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "media_capture_devices.h", 137 "media_capture_devices.h",
139 "media_device_id.cc", 138 "media_device_id.cc",
140 "media_device_id.h", 139 "media_device_id.h",
141 "media_session.h", 140 "media_session.h",
142 "media_session_observer.cc", 141 "media_session_observer.cc",
143 "media_session_observer.h", 142 "media_session_observer.h",
144 "memory_coordinator.h", 143 "memory_coordinator.h",
145 "memory_coordinator_delegate.h", 144 "memory_coordinator_delegate.h",
146 "memory_pressure_controller.cc", 145 "memory_pressure_controller.cc",
147 "memory_pressure_controller.h", 146 "memory_pressure_controller.h",
148 "message_port_delegate.h",
149 "message_port_provider.h", 147 "message_port_provider.h",
150 "native_web_keyboard_event.h", 148 "native_web_keyboard_event.h",
151 "navigation_controller.cc", 149 "navigation_controller.cc",
152 "navigation_controller.h", 150 "navigation_controller.h",
153 "navigation_data.h", 151 "navigation_data.h",
154 "navigation_details.cc", 152 "navigation_details.cc",
155 "navigation_details.h", 153 "navigation_details.h",
156 "navigation_entry.h", 154 "navigation_entry.h",
157 "navigation_handle.cc", 155 "navigation_handle.cc",
158 "navigation_handle.h", 156 "navigation_handle.h",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 323
326 if (is_android) { 324 if (is_android) {
327 deps += [ "//ui/android" ] 325 deps += [ "//ui/android" ]
328 } 326 }
329 327
330 if (use_aura) { 328 if (use_aura) {
331 sources -= [ "context_factory.h" ] 329 sources -= [ "context_factory.h" ]
332 deps += [ "//ui/aura" ] 330 deps += [ "//ui/aura" ]
333 } 331 }
334 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698