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

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: 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 3445 matching lines...) Expand 10 before | Expand all | Expand 10 after
3456 "renderer_context_menu/spelling_options_submenu_observer.h", 3456 "renderer_context_menu/spelling_options_submenu_observer.h",
3457 ] 3457 ]
3458 } 3458 }
3459 3459
3460 if (is_desktop_linux) { 3460 if (is_desktop_linux) {
3461 # Desktop linux, doesn't count ChromeOS. 3461 # Desktop linux, doesn't count ChromeOS.
3462 sources += [ 3462 sources += [
3463 "first_run/upgrade_util.cc", 3463 "first_run/upgrade_util.cc",
3464 "first_run/upgrade_util_linux.cc", 3464 "first_run/upgrade_util_linux.cc",
3465 "first_run/upgrade_util_linux.h", 3465 "first_run/upgrade_util_linux.h",
3466 "fullscreen_aurax11.cc",
3467 "icon_loader_auralinux.cc", 3466 "icon_loader_auralinux.cc",
3468 "media/webrtc/window_icon_util_x11.cc",
3469 "password_manager/native_backend_kwallet_x.cc",
3470 "password_manager/native_backend_kwallet_x.h",
3471 "platform_util_linux.cc", 3467 "platform_util_linux.cc",
3472 "shell_integration_linux.cc", 3468 "shell_integration_linux.cc",
3473 "shell_integration_linux.h", 3469 "shell_integration_linux.h",
3474 "speech/tts_linux.cc", 3470 "speech/tts_linux.cc",
3475 "themes/theme_service_aurax11.cc", 3471 "themes/theme_service_aurax11.cc",
3476 "themes/theme_service_aurax11.h", 3472 "themes/theme_service_aurax11.h",
3477 "web_applications/web_app_linux.cc", 3473 "web_applications/web_app_linux.cc",
3478 ] 3474 ]
3479 if (!use_ozone) { 3475 if (!use_ozone) {
3480 sources += [ 3476 sources += [
3477 "fullscreen_aurax11.cc",
3478 "media/webrtc/window_icon_util_x11.cc",
3479 "password_manager/native_backend_kwallet_x.cc",
3480 "password_manager/native_backend_kwallet_x.h",
3481 "password_manager/native_backend_libsecret.cc", 3481 "password_manager/native_backend_libsecret.cc",
3482 "password_manager/native_backend_libsecret.h", 3482 "password_manager/native_backend_libsecret.h",
3483 ] 3483 ]
3484 defines += [ "USE_LIBSECRET" ] 3484 defines += [ "USE_LIBSECRET" ]
3485 deps += [ "//third_party/libsecret" ] 3485 deps += [ "//third_party/libsecret" ]
3486 } else {
3487 sources += [
3488 "media/webrtc/window_icon_util_ozone.cc",
3489 "ui/ozone_stubs.cc",
3490 "ui/ozone_stubs.h",
3491 ]
3486 } 3492 }
3487 } 3493 }
3488 3494
3489 if (android_java_ui) { 3495 if (android_java_ui) {
3490 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] 3496 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ]
3491 } 3497 }
3492 3498
3493 if (enable_plugin_installation) { 3499 if (enable_plugin_installation) {
3494 sources += [ 3500 sources += [
3495 "plugins/plugin_installer.cc", 3501 "plugins/plugin_installer.cc",
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
4286 # linking all of the test support. 4292 # linking all of the test support.
4287 static_library("pepper_cdm_test_constants") { 4293 static_library("pepper_cdm_test_constants") {
4288 testonly = true 4294 testonly = true
4289 visibility = [ "//chrome/*" ] 4295 visibility = [ "//chrome/*" ]
4290 sources = [ 4296 sources = [
4291 "media/pepper_cdm_test_constants.cc", 4297 "media/pepper_cdm_test_constants.cc",
4292 "media/pepper_cdm_test_constants.h", 4298 "media/pepper_cdm_test_constants.h",
4293 ] 4299 ]
4294 } 4300 }
4295 } 4301 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/ui/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698