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

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

Issue 2514413002: Clean up GTK3 build flags. (Closed)
Patch Set: Fixes 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 2242 matching lines...) Expand 10 before | Expand all | Expand 10 after
2253 2253
2254 if (use_x11) { 2254 if (use_x11) {
2255 sources += [ 2255 sources += [
2256 "chrome_browser_main_extra_parts_x11.cc", 2256 "chrome_browser_main_extra_parts_x11.cc",
2257 "chrome_browser_main_extra_parts_x11.h", 2257 "chrome_browser_main_extra_parts_x11.h",
2258 "password_manager/password_store_x.cc", 2258 "password_manager/password_store_x.cc",
2259 "password_manager/password_store_x.h", 2259 "password_manager/password_store_x.h",
2260 ] 2260 ]
2261 } 2261 }
2262 if (use_aura && !use_ozone && is_desktop_linux) { 2262 if (use_aura && !use_ozone && is_desktop_linux) {
2263 if (use_gtk3) { 2263 deps += [ "//chrome/browser/ui/libgtkui" ]
2264 deps += [ "//chrome/browser/ui/libgtkui:libgtk3ui" ]
2265 } else {
2266 deps += [ "//chrome/browser/ui/libgtkui:libgtk2ui" ]
2267 }
2268 } 2264 }
2269 if (is_posix && !is_mac) { 2265 if (is_posix && !is_mac) {
2270 sources += [ 2266 sources += [
2271 "//chrome/app/chrome_crash_reporter_client.cc", 2267 "//chrome/app/chrome_crash_reporter_client.cc",
2272 "//chrome/app/chrome_crash_reporter_client.h", 2268 "//chrome/app/chrome_crash_reporter_client.h",
2273 ] 2269 ]
2274 deps += [ 2270 deps += [
2275 "//components/crash/content/app", 2271 "//components/crash/content/app",
2276 "//components/crash/content/browser", 2272 "//components/crash/content/browser",
2277 "//components/version_info:generate_version_info", 2273 "//components/version_info:generate_version_info",
(...skipping 2140 matching lines...) Expand 10 before | Expand all | Expand 10 after
4418 # linking all of the test support. 4414 # linking all of the test support.
4419 static_library("pepper_cdm_test_constants") { 4415 static_library("pepper_cdm_test_constants") {
4420 testonly = true 4416 testonly = true
4421 visibility = [ "//chrome/*" ] 4417 visibility = [ "//chrome/*" ]
4422 sources = [ 4418 sources = [
4423 "media/pepper_cdm_test_constants.cc", 4419 "media/pepper_cdm_test_constants.cc",
4424 "media/pepper_cdm_test_constants.h", 4420 "media/pepper_cdm_test_constants.h",
4425 ] 4421 ]
4426 } 4422 }
4427 } 4423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698