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

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

Issue 1838273003: MD Settings: Hooking up native certificate manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 4 years, 8 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/common/features.gni") 8 import("//chrome/common/features.gni")
9 9
10 gypi_values = exec_script("//build/gypi_to_gn.py", 10 gypi_values = exec_script("//build/gypi_to_gn.py",
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 "//chrome") 360 "//chrome")
361 } 361 }
362 } 362 }
363 if (ui_compositor_image_transport) { 363 if (ui_compositor_image_transport) {
364 deps += [ "//ui/gl" ] 364 deps += [ "//ui/gl" ]
365 } 365 }
366 if (use_nss_certs) { 366 if (use_nss_certs) {
367 sources += 367 sources +=
368 rebase_path(gypi_values.chrome_browser_ui_nss_sources, ".", "//chrome") 368 rebase_path(gypi_values.chrome_browser_ui_nss_sources, ".", "//chrome")
369 } 369 }
370 if (is_mac || is_win) {
371 sources += rebase_path(gypi_values.chrome_browser_ui_non_nss_sources,
372 ".",
373 "//chrome")
374 }
370 if (!enable_themes) { 375 if (!enable_themes) {
371 sources -= [ "webui/theme_source.cc" ] 376 sources -= [ "webui/theme_source.cc" ]
372 } 377 }
373 if (enable_print_preview) { 378 if (enable_print_preview) {
374 sources += rebase_path(gypi_values.chrome_browser_ui_print_preview_sources, 379 sources += rebase_path(gypi_values.chrome_browser_ui_print_preview_sources,
375 ".", 380 ".",
376 "//chrome") 381 "//chrome")
377 } 382 }
378 383
379 if (is_android) { 384 if (is_android) {
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 "//chrome/browser", 669 "//chrome/browser",
665 "//content/public/browser", 670 "//content/public/browser",
666 "//content/public/common", 671 "//content/public/common",
667 "//content/test:test_support", 672 "//content/test:test_support",
668 "//net:test_support", 673 "//net:test_support",
669 "//skia", 674 "//skia",
670 "//testing/gtest", 675 "//testing/gtest",
671 "//ui/base", 676 "//ui/base",
672 ] 677 ]
673 } 678 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698