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("//gpu/vulkan/features.gni") | 7 import("//gpu/vulkan/features.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
10 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 "//third_party/WebKit/public:features", | 135 "//third_party/WebKit/public:features", |
136 "//third_party/WebKit/public:image_resources", | 136 "//third_party/WebKit/public:image_resources", |
137 "//third_party/WebKit/public:mojo_bindings", | 137 "//third_party/WebKit/public:mojo_bindings", |
138 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings", | 138 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings", |
139 "//third_party/WebKit/public:resources", | 139 "//third_party/WebKit/public:resources", |
140 "//third_party/angle:angle_common", | 140 "//third_party/angle:angle_common", |
141 "//third_party/icu", | 141 "//third_party/icu", |
142 "//third_party/libyuv", | 142 "//third_party/libyuv", |
143 "//third_party/re2", | 143 "//third_party/re2", |
144 "//third_party/zlib", | 144 "//third_party/zlib", |
| 145 "//third_party/zlib:compression_utils", |
145 "//third_party/zlib:zip", | 146 "//third_party/zlib:zip", |
146 "//ui/accessibility", | 147 "//ui/accessibility", |
147 "//ui/accessibility:ax_gen", | 148 "//ui/accessibility:ax_gen", |
148 "//ui/base", | 149 "//ui/base", |
149 "//ui/base/ime", | 150 "//ui/base/ime", |
150 "//ui/display", | 151 "//ui/display", |
151 "//ui/display/types", | 152 "//ui/display/types", |
152 "//ui/events", | 153 "//ui/events", |
153 "//ui/events:gesture_detection", | 154 "//ui/events:gesture_detection", |
154 "//ui/events/blink", | 155 "//ui/events/blink", |
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1506 "webui/url_data_manager_backend.h", | 1507 "webui/url_data_manager_backend.h", |
1507 "webui/url_data_source_impl.cc", | 1508 "webui/url_data_source_impl.cc", |
1508 "webui/url_data_source_impl.h", | 1509 "webui/url_data_source_impl.h", |
1509 "webui/web_ui_controller_factory_registry.cc", | 1510 "webui/web_ui_controller_factory_registry.cc", |
1510 "webui/web_ui_controller_factory_registry.h", | 1511 "webui/web_ui_controller_factory_registry.h", |
1511 "webui/web_ui_data_source_impl.cc", | 1512 "webui/web_ui_data_source_impl.cc", |
1512 "webui/web_ui_data_source_impl.h", | 1513 "webui/web_ui_data_source_impl.h", |
1513 "webui/web_ui_impl.cc", | 1514 "webui/web_ui_impl.cc", |
1514 "webui/web_ui_impl.h", | 1515 "webui/web_ui_impl.h", |
1515 "webui/web_ui_message_handler.cc", | 1516 "webui/web_ui_message_handler.cc", |
| 1517 "webui/web_ui_url_loader_factory.cc", |
| 1518 "webui/web_ui_url_loader_factory.h", |
1516 "zygote_host/zygote_communication_linux.cc", | 1519 "zygote_host/zygote_communication_linux.cc", |
1517 "zygote_host/zygote_communication_linux.h", | 1520 "zygote_host/zygote_communication_linux.h", |
1518 "zygote_host/zygote_handle_linux.cc", | 1521 "zygote_host/zygote_handle_linux.cc", |
1519 "zygote_host/zygote_host_impl_linux.cc", | 1522 "zygote_host/zygote_host_impl_linux.cc", |
1520 "zygote_host/zygote_host_impl_linux.h", | 1523 "zygote_host/zygote_host_impl_linux.h", |
1521 ] | 1524 ] |
1522 | 1525 |
1523 if (toolkit_views) { | 1526 if (toolkit_views) { |
1524 deps += [ "//ui/events" ] | 1527 deps += [ "//ui/events" ] |
1525 } | 1528 } |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2129 if (!is_component_build) { | 2132 if (!is_component_build) { |
2130 public_deps = [ | 2133 public_deps = [ |
2131 ":browser", | 2134 ":browser", |
2132 ] | 2135 ] |
2133 } else { | 2136 } else { |
2134 public_deps = [ | 2137 public_deps = [ |
2135 "//third_party/leveldatabase", | 2138 "//third_party/leveldatabase", |
2136 ] | 2139 ] |
2137 } | 2140 } |
2138 } | 2141 } |
OLD | NEW |