| 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("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 defines = [] | 30 defines = [] |
| 31 libs = [] | 31 libs = [] |
| 32 ldflags = [] | 32 ldflags = [] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 "//base", | 35 "//base", |
| 36 "//base:base_static", | 36 "//base:base_static", |
| 37 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
| 38 "//cc", | 38 "//cc", |
| 39 "//cc/animation", | 39 "//cc/animation", |
| 40 "//cc/paint", |
| 40 "//cc/surfaces", | 41 "//cc/surfaces", |
| 41 "//components/discardable_memory/common", | 42 "//components/discardable_memory/common", |
| 42 "//components/discardable_memory/service", | 43 "//components/discardable_memory/service", |
| 43 "//components/display_compositor", | 44 "//components/display_compositor", |
| 44 "//components/filesystem:lib", | 45 "//components/filesystem:lib", |
| 45 "//components/leveldb:lib", | 46 "//components/leveldb:lib", |
| 46 "//components/link_header_util", | 47 "//components/link_header_util", |
| 47 "//components/mime_util", | 48 "//components/mime_util", |
| 48 "//components/payments:payment_app", | 49 "//components/payments:payment_app", |
| 49 "//components/rappor", | 50 "//components/rappor", |
| (...skipping 1970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2020 if (!is_component_build) { | 2021 if (!is_component_build) { |
| 2021 public_deps = [ | 2022 public_deps = [ |
| 2022 ":browser", | 2023 ":browser", |
| 2023 ] | 2024 ] |
| 2024 } else { | 2025 } else { |
| 2025 public_deps = [ | 2026 public_deps = [ |
| 2026 "//third_party/leveldatabase", | 2027 "//third_party/leveldatabase", |
| 2027 ] | 2028 ] |
| 2028 } | 2029 } |
| 2029 } | 2030 } |
| OLD | NEW |