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

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

Issue 2803993003: Introduce FrameSinkManagerHost in content/browser/. (Closed)
Patch Set: Fix android. Created 3 years, 8 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
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "//components/filesystem:lib", 43 "//components/filesystem:lib",
44 "//components/leveldb:lib", 44 "//components/leveldb:lib",
45 "//components/link_header_util", 45 "//components/link_header_util",
46 "//components/mime_util", 46 "//components/mime_util",
47 "//components/payments/content:mojom_payment_app", 47 "//components/payments/content:mojom_payment_app",
48 "//components/rappor", 48 "//components/rappor",
49 "//components/tracing", 49 "//components/tracing",
50 "//components/tracing:startup_tracing", 50 "//components/tracing:startup_tracing",
51 "//components/url_formatter", 51 "//components/url_formatter",
52 "//components/variations", 52 "//components/variations",
53 "//components/viz/frame_sinks",
53 "//content:resources", 54 "//content:resources",
54 "//content/app/resources", 55 "//content/app/resources",
55 "//content/app/strings", 56 "//content/app/strings",
56 "//content/browser/background_sync:background_sync_proto", 57 "//content/browser/background_sync:background_sync_proto",
57 "//content/browser/cache_storage:cache_storage_proto", 58 "//content/browser/cache_storage:cache_storage_proto",
58 "//content/browser/devtools:protocol_sources", 59 "//content/browser/devtools:protocol_sources",
59 "//content/browser/devtools:resources", 60 "//content/browser/devtools:resources",
60 "//content/browser/dom_storage:local_storage_proto", 61 "//content/browser/dom_storage:local_storage_proto",
61 "//content/browser/notifications:notification_proto", 62 "//content/browser/notifications:notification_proto",
62 "//content/browser/payments:payment_app_proto", 63 "//content/browser/payments:payment_app_proto",
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 "child_process_security_policy_impl.cc", 457 "child_process_security_policy_impl.cc",
457 "child_process_security_policy_impl.h", 458 "child_process_security_policy_impl.h",
458 "cocoa/system_hotkey_helper_mac.h", 459 "cocoa/system_hotkey_helper_mac.h",
459 "cocoa/system_hotkey_helper_mac.mm", 460 "cocoa/system_hotkey_helper_mac.mm",
460 "cocoa/system_hotkey_map.h", 461 "cocoa/system_hotkey_map.h",
461 "cocoa/system_hotkey_map.mm", 462 "cocoa/system_hotkey_map.mm",
462 463
463 # NOTE: These files are here instead of in compositor_browser_sources 464 # NOTE: These files are here instead of in compositor_browser_sources
464 # because the latter is not built on Android, whereas these files are 465 # because the latter is not built on Android, whereas these files are
465 # needed on all platforms. 466 # needed on all platforms.
467 "compositor/frame_sink_manager_host.cc",
468 "compositor/frame_sink_manager_host.h",
466 "compositor/surface_utils.cc", 469 "compositor/surface_utils.cc",
467 "compositor/surface_utils.h", 470 "compositor/surface_utils.h",
468 "devtools/browser_devtools_agent_host.cc", 471 "devtools/browser_devtools_agent_host.cc",
469 "devtools/browser_devtools_agent_host.h", 472 "devtools/browser_devtools_agent_host.h",
470 "devtools/devtools_agent_host_impl.cc", 473 "devtools/devtools_agent_host_impl.cc",
471 "devtools/devtools_agent_host_impl.h", 474 "devtools/devtools_agent_host_impl.h",
472 "devtools/devtools_frame_trace_recorder.cc", 475 "devtools/devtools_frame_trace_recorder.cc",
473 "devtools/devtools_frame_trace_recorder.h", 476 "devtools/devtools_frame_trace_recorder.h",
474 "devtools/devtools_http_handler.cc", 477 "devtools/devtools_http_handler.cc",
475 "devtools/devtools_http_handler.h", 478 "devtools/devtools_http_handler.h",
(...skipping 1577 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 if (!is_component_build) { 2056 if (!is_component_build) {
2054 public_deps = [ 2057 public_deps = [
2055 ":browser", 2058 ":browser",
2056 ] 2059 ]
2057 } else { 2060 } else {
2058 public_deps = [ 2061 public_deps = [
2059 "//third_party/leveldatabase", 2062 "//third_party/leveldatabase",
2060 ] 2063 ]
2061 } 2064 }
2062 } 2065 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698