| 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 3026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3037 "views/frame/browser_desktop_window_tree_host_x11.cc", | 3037 "views/frame/browser_desktop_window_tree_host_x11.cc", |
| 3038 "views/frame/browser_desktop_window_tree_host_x11.h", | 3038 "views/frame/browser_desktop_window_tree_host_x11.h", |
| 3039 "views/frame/global_menu_bar_registrar_x11.cc", | 3039 "views/frame/global_menu_bar_registrar_x11.cc", |
| 3040 "views/frame/global_menu_bar_registrar_x11.h", | 3040 "views/frame/global_menu_bar_registrar_x11.h", |
| 3041 "views/frame/global_menu_bar_x11.cc", | 3041 "views/frame/global_menu_bar_x11.cc", |
| 3042 "views/frame/global_menu_bar_x11.h", | 3042 "views/frame/global_menu_bar_x11.h", |
| 3043 "views/javascript_app_modal_dialog_views_x11.cc", | 3043 "views/javascript_app_modal_dialog_views_x11.cc", |
| 3044 "views/javascript_app_modal_dialog_views_x11.h", | 3044 "views/javascript_app_modal_dialog_views_x11.h", |
| 3045 ] | 3045 ] |
| 3046 } | 3046 } |
| 3047 |
| 3048 if (use_ozone) { |
| 3049 sources += [ "views/frame/browser_desktop_window_tree_host_ozone.cc" ] |
| 3050 } |
| 3047 } | 3051 } |
| 3048 if (is_linux) { # Both desktop Linux and ChromeOS. | 3052 if (is_linux) { # Both desktop Linux and ChromeOS. |
| 3049 sources += [ | 3053 sources += [ |
| 3050 "certificate_dialogs.cc", | 3054 "certificate_dialogs.cc", |
| 3051 "certificate_dialogs.h", | 3055 "certificate_dialogs.h", |
| 3052 "webui/certificate_viewer_ui.cc", | 3056 "webui/certificate_viewer_ui.cc", |
| 3053 "webui/certificate_viewer_ui.h", | 3057 "webui/certificate_viewer_ui.h", |
| 3054 "webui/certificate_viewer_webui.cc", | 3058 "webui/certificate_viewer_webui.cc", |
| 3055 "webui/certificate_viewer_webui.h", | 3059 "webui/certificate_viewer_webui.h", |
| 3056 ] | 3060 ] |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3442 "test/test_confirm_bubble_model.cc", | 3446 "test/test_confirm_bubble_model.cc", |
| 3443 "test/test_confirm_bubble_model.h", | 3447 "test/test_confirm_bubble_model.h", |
| 3444 ] | 3448 ] |
| 3445 deps += [ "//chrome/test:test_support_ui" ] | 3449 deps += [ "//chrome/test:test_support_ui" ] |
| 3446 } | 3450 } |
| 3447 | 3451 |
| 3448 if (enable_extensions) { | 3452 if (enable_extensions) { |
| 3449 deps += [ "//extensions/browser" ] | 3453 deps += [ "//extensions/browser" ] |
| 3450 } | 3454 } |
| 3451 } | 3455 } |
| OLD | NEW |