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

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: do not bundle ash resources into chrome Created 4 years, 1 month 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 3528 matching lines...) Expand 10 before | Expand all | Expand 10 after
3539 3539
3540 # libsecret hard depends on GLib. 3540 # libsecret hard depends on GLib.
3541 if (use_glib) { 3541 if (use_glib) {
3542 sources += [ 3542 sources += [
3543 "password_manager/native_backend_libsecret.cc", 3543 "password_manager/native_backend_libsecret.cc",
3544 "password_manager/native_backend_libsecret.h", 3544 "password_manager/native_backend_libsecret.h",
3545 ] 3545 ]
3546 defines += [ "USE_LIBSECRET" ] 3546 defines += [ "USE_LIBSECRET" ]
3547 deps += [ "//third_party/libsecret" ] 3547 deps += [ "//third_party/libsecret" ]
3548 } 3548 }
3549
3550 if (use_ozone) {
3551 sources += [
3552 "fullscreen_ozone.cc",
3553 "media/webrtc/window_icon_util_ozone.cc",
3554 ]
3555 }
3549 } 3556 }
3550 3557
3551 if (android_java_ui) { 3558 if (android_java_ui) {
3552 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] 3559 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ]
3553 } 3560 }
3554 3561
3555 if (enable_plugin_installation) { 3562 if (enable_plugin_installation) {
3556 sources += [ 3563 sources += [
3557 "plugins/plugin_installer.cc", 3564 "plugins/plugin_installer.cc",
3558 "plugins/plugin_installer.h", 3565 "plugins/plugin_installer.h",
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
4377 # linking all of the test support. 4384 # linking all of the test support.
4378 static_library("pepper_cdm_test_constants") { 4385 static_library("pepper_cdm_test_constants") {
4379 testonly = true 4386 testonly = true
4380 visibility = [ "//chrome/*" ] 4387 visibility = [ "//chrome/*" ]
4381 sources = [ 4388 sources = [
4382 "media/pepper_cdm_test_constants.cc", 4389 "media/pepper_cdm_test_constants.cc",
4383 "media/pepper_cdm_test_constants.h", 4390 "media/pepper_cdm_test_constants.h",
4384 ] 4391 ]
4385 } 4392 }
4386 } 4393 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698