| 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 17 matching lines...) Expand all Loading... |
| 28 defines = [] | 28 defines = [] |
| 29 libs = [] | 29 libs = [] |
| 30 ldflags = [] | 30 ldflags = [] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//base:base_static", | 34 "//base:base_static", |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//cc", | 36 "//cc", |
| 37 "//cc/surfaces", | 37 "//cc/surfaces", |
| 38 "//components/discardable_memory/common", |
| 38 "//components/display_compositor", | 39 "//components/display_compositor", |
| 39 "//components/filesystem:lib", | 40 "//components/filesystem:lib", |
| 40 "//components/leveldb:lib", | 41 "//components/leveldb:lib", |
| 41 "//components/link_header_util", | 42 "//components/link_header_util", |
| 42 "//components/mime_util", | 43 "//components/mime_util", |
| 43 "//components/tracing", | 44 "//components/tracing", |
| 44 "//components/tracing:startup_tracing", | 45 "//components/tracing:startup_tracing", |
| 45 "//components/url_formatter", | 46 "//components/url_formatter", |
| 46 "//content:resources", | 47 "//content:resources", |
| 47 "//content/app/resources", | 48 "//content/app/resources", |
| (...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1944 if (!is_component_build) { | 1945 if (!is_component_build) { |
| 1945 public_deps = [ | 1946 public_deps = [ |
| 1946 ":browser", | 1947 ":browser", |
| 1947 ] | 1948 ] |
| 1948 } else { | 1949 } else { |
| 1949 public_deps = [ | 1950 public_deps = [ |
| 1950 "//third_party/leveldatabase", | 1951 "//third_party/leveldatabase", |
| 1951 ] | 1952 ] |
| 1952 } | 1953 } |
| 1953 } | 1954 } |
| OLD | NEW |