| 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 assert(is_linux, "This file should only be referenced on Linux") | 5 assert(is_linux, "This file should only be referenced on Linux") |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 | 9 |
| 10 pkg_config("gtk") { | 10 pkg_config("gtk") { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//chrome:extra_resources", | 113 "//chrome:extra_resources", |
| 114 "//chrome:resources", | 114 "//chrome:resources", |
| 115 "//chrome:strings", | 115 "//chrome:strings", |
| 116 "//components/resources", | 116 "//components/resources", |
| 117 "//content/public/browser", | 117 "//content/public/browser", |
| 118 "//printing", | 118 "//printing", |
| 119 "//skia", | 119 "//skia", |
| 120 "//third_party/mojo/src/mojo/edk/system", | 120 "//third_party/mojo/src/mojo/edk/system", |
| 121 "//ui/aura", | 121 "//ui/aura", |
| 122 "//ui/base", | 122 "//ui/base", |
| 123 "//ui/base/ime", | |
| 124 "//ui/events", | 123 "//ui/events", |
| 125 "//ui/events:events_base", | 124 "//ui/events:events_base", |
| 126 "//ui/gfx", | 125 "//ui/gfx", |
| 127 "//ui/gfx/x", | 126 "//ui/gfx/x", |
| 128 "//ui/native_theme", | 127 "//ui/native_theme", |
| 129 "//ui/resources", | 128 "//ui/resources", |
| 130 "//ui/shell_dialogs", | 129 "//ui/shell_dialogs", |
| 131 "//ui/strings", | 130 "//ui/strings", |
| 132 "//ui/views", | 131 "//ui/views", |
| 133 ] | 132 ] |
| 134 } | 133 } |
| OLD | NEW |