| 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 2267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2278 "webui/offline/offline_internals_ui.cc", | 2278 "webui/offline/offline_internals_ui.cc", |
| 2279 "webui/offline/offline_internals_ui.h", | 2279 "webui/offline/offline_internals_ui.h", |
| 2280 "webui/offline/offline_internals_ui_message_handler.cc", | 2280 "webui/offline/offline_internals_ui_message_handler.cc", |
| 2281 "webui/offline/offline_internals_ui_message_handler.h", | 2281 "webui/offline/offline_internals_ui_message_handler.h", |
| 2282 "webui/popular_sites_internals_ui.cc", | 2282 "webui/popular_sites_internals_ui.cc", |
| 2283 "webui/popular_sites_internals_ui.h", | 2283 "webui/popular_sites_internals_ui.h", |
| 2284 "webui/snippets_internals_message_handler.cc", | 2284 "webui/snippets_internals_message_handler.cc", |
| 2285 "webui/snippets_internals_message_handler.h", | 2285 "webui/snippets_internals_message_handler.h", |
| 2286 "webui/snippets_internals_ui.cc", | 2286 "webui/snippets_internals_ui.cc", |
| 2287 "webui/snippets_internals_ui.h", | 2287 "webui/snippets_internals_ui.h", |
| 2288 "webui/webapks_handler.cc", |
| 2289 "webui/webapks_handler.h", |
| 2290 "webui/webapks_ui.cc", |
| 2291 "webui/webapks_ui.h", |
| 2288 ] | 2292 ] |
| 2289 if (enable_vr_shell || enable_webvr) { | 2293 if (enable_vr_shell || enable_webvr) { |
| 2290 if (enable_vr_shell) { | 2294 if (enable_vr_shell) { |
| 2291 defines += [ "ENABLE_VR_SHELL" ] | 2295 defines += [ "ENABLE_VR_SHELL" ] |
| 2292 } | 2296 } |
| 2293 sources += [ | 2297 sources += [ |
| 2294 "webui/vr_shell/vr_shell_ui_message_handler.cc", | 2298 "webui/vr_shell/vr_shell_ui_message_handler.cc", |
| 2295 "webui/vr_shell/vr_shell_ui_message_handler.h", | 2299 "webui/vr_shell/vr_shell_ui_message_handler.h", |
| 2296 "webui/vr_shell/vr_shell_ui_ui.cc", | 2300 "webui/vr_shell/vr_shell_ui_ui.cc", |
| 2297 "webui/vr_shell/vr_shell_ui_ui.h", | 2301 "webui/vr_shell/vr_shell_ui_ui.h", |
| (...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3512 "test/test_confirm_bubble_model.cc", | 3516 "test/test_confirm_bubble_model.cc", |
| 3513 "test/test_confirm_bubble_model.h", | 3517 "test/test_confirm_bubble_model.h", |
| 3514 ] | 3518 ] |
| 3515 deps += [ "//chrome/test:test_support_ui" ] | 3519 deps += [ "//chrome/test:test_support_ui" ] |
| 3516 } | 3520 } |
| 3517 | 3521 |
| 3518 if (enable_extensions) { | 3522 if (enable_extensions) { |
| 3519 deps += [ "//extensions/browser" ] | 3523 deps += [ "//extensions/browser" ] |
| 3520 } | 3524 } |
| 3521 } | 3525 } |
| OLD | NEW |