| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2265 "webui/offline/offline_internals_ui.cc", | 2265 "webui/offline/offline_internals_ui.cc", |
| 2266 "webui/offline/offline_internals_ui.h", | 2266 "webui/offline/offline_internals_ui.h", |
| 2267 "webui/offline/offline_internals_ui_message_handler.cc", | 2267 "webui/offline/offline_internals_ui_message_handler.cc", |
| 2268 "webui/offline/offline_internals_ui_message_handler.h", | 2268 "webui/offline/offline_internals_ui_message_handler.h", |
| 2269 "webui/popular_sites_internals_ui.cc", | 2269 "webui/popular_sites_internals_ui.cc", |
| 2270 "webui/popular_sites_internals_ui.h", | 2270 "webui/popular_sites_internals_ui.h", |
| 2271 "webui/snippets_internals_message_handler.cc", | 2271 "webui/snippets_internals_message_handler.cc", |
| 2272 "webui/snippets_internals_message_handler.h", | 2272 "webui/snippets_internals_message_handler.h", |
| 2273 "webui/snippets_internals_ui.cc", | 2273 "webui/snippets_internals_ui.cc", |
| 2274 "webui/snippets_internals_ui.h", | 2274 "webui/snippets_internals_ui.h", |
| 2275 "webui/webapks_handler.cc", |
| 2276 "webui/webapks_handler.h", |
| 2277 "webui/webapks_ui.cc", |
| 2278 "webui/webapks_ui.h", |
| 2275 ] | 2279 ] |
| 2276 if (enable_vr_shell || enable_webvr) { | 2280 if (enable_vr_shell || enable_webvr) { |
| 2277 if (enable_vr_shell) { | 2281 if (enable_vr_shell) { |
| 2278 defines += [ "ENABLE_VR_SHELL" ] | 2282 defines += [ "ENABLE_VR_SHELL" ] |
| 2279 } | 2283 } |
| 2280 sources += [ | 2284 sources += [ |
| 2281 "webui/vr_shell/vr_shell_ui_message_handler.cc", | 2285 "webui/vr_shell/vr_shell_ui_message_handler.cc", |
| 2282 "webui/vr_shell/vr_shell_ui_message_handler.h", | 2286 "webui/vr_shell/vr_shell_ui_message_handler.h", |
| 2283 "webui/vr_shell/vr_shell_ui_ui.cc", | 2287 "webui/vr_shell/vr_shell_ui_ui.cc", |
| 2284 "webui/vr_shell/vr_shell_ui_ui.h", | 2288 "webui/vr_shell/vr_shell_ui_ui.h", |
| (...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3498 "test/test_confirm_bubble_model.cc", | 3502 "test/test_confirm_bubble_model.cc", |
| 3499 "test/test_confirm_bubble_model.h", | 3503 "test/test_confirm_bubble_model.h", |
| 3500 ] | 3504 ] |
| 3501 deps += [ "//chrome/test:test_support_ui" ] | 3505 deps += [ "//chrome/test:test_support_ui" ] |
| 3502 } | 3506 } |
| 3503 | 3507 |
| 3504 if (enable_extensions) { | 3508 if (enable_extensions) { |
| 3505 deps += [ "//extensions/browser" ] | 3509 deps += [ "//extensions/browser" ] |
| 3506 } | 3510 } |
| 3507 } | 3511 } |
| OLD | NEW |