| 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/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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 "cocoa/system_hotkey_helper_mac.h", | 464 "cocoa/system_hotkey_helper_mac.h", |
| 465 "cocoa/system_hotkey_helper_mac.mm", | 465 "cocoa/system_hotkey_helper_mac.mm", |
| 466 "cocoa/system_hotkey_map.h", | 466 "cocoa/system_hotkey_map.h", |
| 467 "cocoa/system_hotkey_map.mm", | 467 "cocoa/system_hotkey_map.mm", |
| 468 | 468 |
| 469 # NOTE: These files are here instead of in compositor_browser_sources | 469 # NOTE: These files are here instead of in compositor_browser_sources |
| 470 # because the latter is not built on Android, whereas these files are | 470 # because the latter is not built on Android, whereas these files are |
| 471 # needed on all platforms. | 471 # needed on all platforms. |
| 472 "compositor/frame_sink_manager_host.cc", | 472 "compositor/frame_sink_manager_host.cc", |
| 473 "compositor/frame_sink_manager_host.h", | 473 "compositor/frame_sink_manager_host.h", |
| 474 "compositor/frame_sink_observer.h", |
| 474 "compositor/surface_utils.cc", | 475 "compositor/surface_utils.cc", |
| 475 "compositor/surface_utils.h", | 476 "compositor/surface_utils.h", |
| 476 "devtools/browser_devtools_agent_host.cc", | 477 "devtools/browser_devtools_agent_host.cc", |
| 477 "devtools/browser_devtools_agent_host.h", | 478 "devtools/browser_devtools_agent_host.h", |
| 478 "devtools/devtools_agent_host_impl.cc", | 479 "devtools/devtools_agent_host_impl.cc", |
| 479 "devtools/devtools_agent_host_impl.h", | 480 "devtools/devtools_agent_host_impl.h", |
| 480 "devtools/devtools_frame_trace_recorder.cc", | 481 "devtools/devtools_frame_trace_recorder.cc", |
| 481 "devtools/devtools_frame_trace_recorder.h", | 482 "devtools/devtools_frame_trace_recorder.h", |
| 482 "devtools/devtools_http_handler.cc", | 483 "devtools/devtools_http_handler.cc", |
| 483 "devtools/devtools_http_handler.h", | 484 "devtools/devtools_http_handler.h", |
| (...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2093 if (!is_component_build) { | 2094 if (!is_component_build) { |
| 2094 public_deps = [ | 2095 public_deps = [ |
| 2095 ":browser", | 2096 ":browser", |
| 2096 ] | 2097 ] |
| 2097 } else { | 2098 } else { |
| 2098 public_deps = [ | 2099 public_deps = [ |
| 2099 "//third_party/leveldatabase", | 2100 "//third_party/leveldatabase", |
| 2100 ] | 2101 ] |
| 2101 } | 2102 } |
| 2102 } | 2103 } |
| OLD | NEW |