| 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 "devtools/protocol/schema_handler.cc", | 427 "devtools/protocol/schema_handler.cc", |
| 428 "devtools/protocol/schema_handler.h", | 428 "devtools/protocol/schema_handler.h", |
| 429 "devtools/protocol/security_handler.cc", | 429 "devtools/protocol/security_handler.cc", |
| 430 "devtools/protocol/security_handler.h", | 430 "devtools/protocol/security_handler.h", |
| 431 "devtools/protocol/service_worker_handler.cc", | 431 "devtools/protocol/service_worker_handler.cc", |
| 432 "devtools/protocol/service_worker_handler.h", | 432 "devtools/protocol/service_worker_handler.h", |
| 433 "devtools/protocol/storage_handler.cc", | 433 "devtools/protocol/storage_handler.cc", |
| 434 "devtools/protocol/storage_handler.h", | 434 "devtools/protocol/storage_handler.h", |
| 435 "devtools/protocol/system_info_handler.cc", | 435 "devtools/protocol/system_info_handler.cc", |
| 436 "devtools/protocol/system_info_handler.h", | 436 "devtools/protocol/system_info_handler.h", |
| 437 "devtools/protocol/target_handler.cc", |
| 438 "devtools/protocol/target_handler.h", |
| 437 "devtools/protocol/tethering_handler.cc", | 439 "devtools/protocol/tethering_handler.cc", |
| 438 "devtools/protocol/tethering_handler.h", | 440 "devtools/protocol/tethering_handler.h", |
| 439 "devtools/protocol/tracing_handler.cc", | 441 "devtools/protocol/tracing_handler.cc", |
| 440 "devtools/protocol/tracing_handler.h", | 442 "devtools/protocol/tracing_handler.h", |
| 441 "devtools/render_frame_devtools_agent_host.cc", | 443 "devtools/render_frame_devtools_agent_host.cc", |
| 442 "devtools/render_frame_devtools_agent_host.h", | 444 "devtools/render_frame_devtools_agent_host.h", |
| 443 "devtools/service_worker_devtools_agent_host.cc", | 445 "devtools/service_worker_devtools_agent_host.cc", |
| 444 "devtools/service_worker_devtools_agent_host.h", | 446 "devtools/service_worker_devtools_agent_host.h", |
| 445 "devtools/service_worker_devtools_manager.cc", | 447 "devtools/service_worker_devtools_manager.cc", |
| 446 "devtools/service_worker_devtools_manager.h", | 448 "devtools/service_worker_devtools_manager.h", |
| (...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1958 if (!is_component_build) { | 1960 if (!is_component_build) { |
| 1959 public_deps = [ | 1961 public_deps = [ |
| 1960 ":browser", | 1962 ":browser", |
| 1961 ] | 1963 ] |
| 1962 } else { | 1964 } else { |
| 1963 public_deps = [ | 1965 public_deps = [ |
| 1964 "//third_party/leveldatabase", | 1966 "//third_party/leveldatabase", |
| 1965 ] | 1967 ] |
| 1966 } | 1968 } |
| 1967 } | 1969 } |
| OLD | NEW |