Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2408803002: Make it possible to launch chrome --mash with ozone_platform={wayland|x11}, chromeos=0 (Closed)
Patch Set: Make it possible to launch chrome --mash with ozone_platform={wayland|x11}, chromeos=0 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/chrome_build.gni") 5 import("//build/config/chrome_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 3447 matching lines...) Expand 10 before | Expand all | Expand 10 after
3458 "renderer_context_menu/spelling_options_submenu_observer.h", 3458 "renderer_context_menu/spelling_options_submenu_observer.h",
3459 ] 3459 ]
3460 } 3460 }
3461 3461
3462 if (is_desktop_linux) { 3462 if (is_desktop_linux) {
3463 # Desktop linux, doesn't count ChromeOS. 3463 # Desktop linux, doesn't count ChromeOS.
3464 sources += [ 3464 sources += [
3465 "first_run/upgrade_util.cc", 3465 "first_run/upgrade_util.cc",
3466 "first_run/upgrade_util_linux.cc", 3466 "first_run/upgrade_util_linux.cc",
3467 "first_run/upgrade_util_linux.h", 3467 "first_run/upgrade_util_linux.h",
3468 "fullscreen_aurax11.cc",
3469 "icon_loader_auralinux.cc", 3468 "icon_loader_auralinux.cc",
3470 "media/webrtc/window_icon_util_x11.cc",
3471 "password_manager/native_backend_kwallet_x.cc",
3472 "password_manager/native_backend_kwallet_x.h",
3473 "platform_util_linux.cc", 3469 "platform_util_linux.cc",
3474 "shell_integration_linux.cc", 3470 "shell_integration_linux.cc",
3475 "shell_integration_linux.h", 3471 "shell_integration_linux.h",
3476 "speech/tts_linux.cc", 3472 "speech/tts_linux.cc",
3477 "themes/theme_service_aurax11.cc", 3473 "themes/theme_service_aurax11.cc",
3478 "themes/theme_service_aurax11.h", 3474 "themes/theme_service_aurax11.h",
3479 "web_applications/web_app_linux.cc", 3475 "web_applications/web_app_linux.cc",
3480 ] 3476 ]
3481 if (!use_ozone) { 3477 if (!use_ozone) {
3482 sources += [ 3478 sources += [
3479 "fullscreen_aurax11.cc",
3480 "media/webrtc/window_icon_util_x11.cc",
3481 "password_manager/native_backend_kwallet_x.cc",
3482 "password_manager/native_backend_kwallet_x.h",
3483 "password_manager/native_backend_libsecret.cc", 3483 "password_manager/native_backend_libsecret.cc",
3484 "password_manager/native_backend_libsecret.h", 3484 "password_manager/native_backend_libsecret.h",
3485 ] 3485 ]
3486 defines += [ "USE_LIBSECRET" ] 3486 defines += [ "USE_LIBSECRET" ]
3487 deps += [ "//third_party/libsecret" ] 3487 deps += [ "//third_party/libsecret" ]
3488 } else {
3489 sources += [
3490 "fullscreen_ozone.cc",
3491 "media/webrtc/window_icon_util_ozone.cc",
3492 ]
3488 } 3493 }
3489 } 3494 }
3490 3495
3491 if (android_java_ui) { 3496 if (android_java_ui) {
3492 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] 3497 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ]
3493 } 3498 }
3494 3499
3495 if (enable_plugin_installation) { 3500 if (enable_plugin_installation) {
3496 sources += [ 3501 sources += [
3497 "plugins/plugin_installer.cc", 3502 "plugins/plugin_installer.cc",
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
4286 # linking all of the test support. 4291 # linking all of the test support.
4287 static_library("pepper_cdm_test_constants") { 4292 static_library("pepper_cdm_test_constants") {
4288 testonly = true 4293 testonly = true
4289 visibility = [ "//chrome/*" ] 4294 visibility = [ "//chrome/*" ]
4290 sources = [ 4295 sources = [
4291 "media/pepper_cdm_test_constants.cc", 4296 "media/pepper_cdm_test_constants.cc",
4292 "media/pepper_cdm_test_constants.h", 4297 "media/pepper_cdm_test_constants.h",
4293 ] 4298 ]
4294 } 4299 }
4295 } 4300 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/fullscreen_ozone.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698