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

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

Issue 2341773004: Fix 'chrome' build when use_ozone is true (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | chrome/test/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3414 matching lines...) Expand 10 before | Expand all | Expand 10 after
3425 } 3425 }
3426 3426
3427 if (is_linux || is_win) { 3427 if (is_linux || is_win) {
3428 sources += [ 3428 sources += [
3429 "renderer_context_menu/spelling_options_submenu_observer.cc", 3429 "renderer_context_menu/spelling_options_submenu_observer.cc",
3430 "renderer_context_menu/spelling_options_submenu_observer.h", 3430 "renderer_context_menu/spelling_options_submenu_observer.h",
3431 ] 3431 ]
3432 } 3432 }
3433 3433
3434 if (is_desktop_linux) { 3434 if (is_desktop_linux) {
3435 # Desktop linux, doesn"t count ChromeOS. 3435 # Desktop linux, doesn"t count ChromeOS.
Nico 2016/09/14 18:17:12 can you fix the quote char here while you're in th
tonikitoo 2016/09/14 18:56:44 Done.
3436 sources += [ 3436 sources += [
3437 "first_run/upgrade_util.cc", 3437 "first_run/upgrade_util.cc",
3438 "first_run/upgrade_util_linux.cc", 3438 "first_run/upgrade_util_linux.cc",
3439 "first_run/upgrade_util_linux.h", 3439 "first_run/upgrade_util_linux.h",
3440 "fullscreen_aurax11.cc", 3440 "fullscreen_aurax11.cc",
3441 "icon_loader_auralinux.cc", 3441 "icon_loader_auralinux.cc",
3442 "media/webrtc/window_icon_util_x11.cc", 3442 "media/webrtc/window_icon_util_x11.cc",
3443 "password_manager/native_backend_kwallet_x.cc", 3443 "password_manager/native_backend_kwallet_x.cc",
3444 "password_manager/native_backend_kwallet_x.h", 3444 "password_manager/native_backend_kwallet_x.h",
3445 "password_manager/native_backend_libsecret.cc",
3446 "password_manager/native_backend_libsecret.h",
3447 "platform_util_linux.cc", 3445 "platform_util_linux.cc",
3448 "shell_integration_linux.cc", 3446 "shell_integration_linux.cc",
3449 "shell_integration_linux.h", 3447 "shell_integration_linux.h",
3450 "speech/tts_linux.cc", 3448 "speech/tts_linux.cc",
3451 "themes/theme_service_aurax11.cc", 3449 "themes/theme_service_aurax11.cc",
3452 "themes/theme_service_aurax11.h", 3450 "themes/theme_service_aurax11.h",
3453 "web_applications/web_app_linux.cc", 3451 "web_applications/web_app_linux.cc",
3454 ] 3452 ]
3455 defines += [ "USE_LIBSECRET" ] 3453 if (!use_ozone) {
3456 deps += [ "//third_party/libsecret" ] 3454 sources += [
3455 "password_manager/native_backend_libsecret.cc",
3456 "password_manager/native_backend_libsecret.h",
3457 ]
3458 defines += [ "USE_LIBSECRET" ]
3459 deps += [ "//third_party/libsecret" ]
3460 }
3457 } 3461 }
3458 3462
3459 if (enable_plugin_installation) { 3463 if (enable_plugin_installation) {
3460 sources += [ 3464 sources += [
3461 "plugins/plugin_installer.cc", 3465 "plugins/plugin_installer.cc",
3462 "plugins/plugin_installer.h", 3466 "plugins/plugin_installer.h",
3463 "plugins/plugin_installer_observer.cc", 3467 "plugins/plugin_installer_observer.cc",
3464 "plugins/plugin_installer_observer.h", 3468 "plugins/plugin_installer_observer.h",
3465 "plugins/plugins_resource_service.cc", 3469 "plugins/plugins_resource_service.cc",
3466 "plugins/plugins_resource_service.h", 3470 "plugins/plugins_resource_service.h",
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
4244 # linking all of the test support. 4248 # linking all of the test support.
4245 static_library("pepper_cdm_test_constants") { 4249 static_library("pepper_cdm_test_constants") {
4246 testonly = true 4250 testonly = true
4247 visibility = [ "//chrome/*" ] 4251 visibility = [ "//chrome/*" ]
4248 sources = [ 4252 sources = [
4249 "media/pepper_cdm_test_constants.cc", 4253 "media/pepper_cdm_test_constants.cc",
4250 "media/pepper_cdm_test_constants.h", 4254 "media/pepper_cdm_test_constants.h",
4251 ] 4255 ]
4252 } 4256 }
4253 } 4257 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | chrome/test/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698