| 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 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3051 "views/frame/global_menu_bar_registrar_x11.cc", | 3051 "views/frame/global_menu_bar_registrar_x11.cc", |
| 3052 "views/frame/global_menu_bar_registrar_x11.h", | 3052 "views/frame/global_menu_bar_registrar_x11.h", |
| 3053 "views/frame/global_menu_bar_x11.cc", | 3053 "views/frame/global_menu_bar_x11.cc", |
| 3054 "views/frame/global_menu_bar_x11.h", | 3054 "views/frame/global_menu_bar_x11.h", |
| 3055 "views/frame/native_browser_frame_factory_auralinux.cc", | 3055 "views/frame/native_browser_frame_factory_auralinux.cc", |
| 3056 "views/javascript_app_modal_dialog_views_x11.cc", | 3056 "views/javascript_app_modal_dialog_views_x11.cc", |
| 3057 "views/javascript_app_modal_dialog_views_x11.h", | 3057 "views/javascript_app_modal_dialog_views_x11.h", |
| 3058 ] | 3058 ] |
| 3059 } | 3059 } |
| 3060 if (use_ozone) { | 3060 if (use_ozone) { |
| 3061 sources += [ "views/frame/native_browser_frame_factory_ozone.cc" ] | 3061 sources += [ |
| 3062 "views/frame/native_browser_frame_factory_ozone.cc", |
| 3063 "views/frame/browser_desktop_window_tree_host_ozone.cc" |
| 3064 ] |
| 3062 } | 3065 } |
| 3063 } | 3066 } |
| 3064 if (is_linux) { # Both desktop Linux and ChromeOS. | 3067 if (is_linux) { # Both desktop Linux and ChromeOS. |
| 3065 sources += [ | 3068 sources += [ |
| 3066 "certificate_dialogs.cc", | 3069 "certificate_dialogs.cc", |
| 3067 "certificate_dialogs.h", | 3070 "certificate_dialogs.h", |
| 3068 "webui/certificate_viewer_ui.cc", | 3071 "webui/certificate_viewer_ui.cc", |
| 3069 "webui/certificate_viewer_ui.h", | 3072 "webui/certificate_viewer_ui.h", |
| 3070 "webui/certificate_viewer_webui.cc", | 3073 "webui/certificate_viewer_webui.cc", |
| 3071 "webui/certificate_viewer_webui.h", | 3074 "webui/certificate_viewer_webui.h", |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3456 "test/test_confirm_bubble_model.cc", | 3459 "test/test_confirm_bubble_model.cc", |
| 3457 "test/test_confirm_bubble_model.h", | 3460 "test/test_confirm_bubble_model.h", |
| 3458 ] | 3461 ] |
| 3459 deps += [ "//chrome/test:test_support_ui" ] | 3462 deps += [ "//chrome/test:test_support_ui" ] |
| 3460 } | 3463 } |
| 3461 | 3464 |
| 3462 if (enable_extensions) { | 3465 if (enable_extensions) { |
| 3463 deps += [ "//extensions/browser" ] | 3466 deps += [ "//extensions/browser" ] |
| 3464 } | 3467 } |
| 3465 } | 3468 } |
| OLD | NEW |