| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "devtools/devtools_io_context.cc", | 401 "devtools/devtools_io_context.cc", |
| 402 "devtools/devtools_io_context.h", | 402 "devtools/devtools_io_context.h", |
| 403 "devtools/devtools_manager.cc", | 403 "devtools/devtools_manager.cc", |
| 404 "devtools/devtools_manager.h", | 404 "devtools/devtools_manager.h", |
| 405 "devtools/devtools_protocol_handler.cc", | 405 "devtools/devtools_protocol_handler.cc", |
| 406 "devtools/devtools_protocol_handler.h", | 406 "devtools/devtools_protocol_handler.h", |
| 407 "devtools/forwarding_agent_host.cc", | 407 "devtools/forwarding_agent_host.cc", |
| 408 "devtools/forwarding_agent_host.h", | 408 "devtools/forwarding_agent_host.h", |
| 409 "devtools/page_navigation_throttle.cc", | 409 "devtools/page_navigation_throttle.cc", |
| 410 "devtools/page_navigation_throttle.h", | 410 "devtools/page_navigation_throttle.h", |
| 411 "devtools/protocol/browser_handler.cc", | |
| 412 "devtools/protocol/browser_handler.h", | |
| 413 "devtools/protocol/color_picker.cc", | 411 "devtools/protocol/color_picker.cc", |
| 414 "devtools/protocol/color_picker.h", | 412 "devtools/protocol/color_picker.h", |
| 415 "devtools/protocol/devtools_protocol_client.cc", | 413 "devtools/protocol/devtools_protocol_client.cc", |
| 416 "devtools/protocol/devtools_protocol_client.h", | 414 "devtools/protocol/devtools_protocol_client.h", |
| 417 "devtools/protocol/devtools_protocol_delegate.h", | 415 "devtools/protocol/devtools_protocol_delegate.h", |
| 418 "devtools/protocol/dom_handler.cc", | 416 "devtools/protocol/dom_handler.cc", |
| 419 "devtools/protocol/dom_handler.h", | 417 "devtools/protocol/dom_handler.h", |
| 420 "devtools/protocol/emulation_handler.cc", | 418 "devtools/protocol/emulation_handler.cc", |
| 421 "devtools/protocol/emulation_handler.h", | 419 "devtools/protocol/emulation_handler.h", |
| 422 "devtools/protocol/input_handler.cc", | 420 "devtools/protocol/input_handler.cc", |
| (...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1943 if (!is_component_build) { | 1941 if (!is_component_build) { |
| 1944 public_deps = [ | 1942 public_deps = [ |
| 1945 ":browser", | 1943 ":browser", |
| 1946 ] | 1944 ] |
| 1947 } else { | 1945 } else { |
| 1948 public_deps = [ | 1946 public_deps = [ |
| 1949 "//third_party/leveldatabase", | 1947 "//third_party/leveldatabase", |
| 1950 ] | 1948 ] |
| 1951 } | 1949 } |
| 1952 } | 1950 } |
| OLD | NEW |