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

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

Issue 1117173004: Split cert reporter class into report building/serializing and sending (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move //c/b/ssl classes into global namespace Created 5 years, 7 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 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 24 matching lines...) Expand all
35 ] 35 ]
36 deps = [ 36 deps = [
37 # NOTE: New dependencies should generally be added in the OS!="ios" 37 # NOTE: New dependencies should generally be added in the OS!="ios"
38 # dependencies block below, rather than here. 38 # dependencies block below, rather than here.
39 "//base/allocator", 39 "//base/allocator",
40 "//chrome:extra_resources", 40 "//chrome:extra_resources",
41 "//chrome:resources", 41 "//chrome:resources",
42 "//chrome:strings", 42 "//chrome:strings",
43 "//chrome/app/resources:platform_locale_settings", 43 "//chrome/app/resources:platform_locale_settings",
44 "//chrome/app/theme:theme_resources", 44 "//chrome/app/theme:theme_resources",
45 "//chrome/browser/net:cert_logger_proto", 45 "//chrome/browser/net:encrypted_cert_logger_proto",
46 "//chrome/browser/ssl:cert_logger_proto",
46 "//chrome/common", 47 "//chrome/common",
47 "//chrome/common/net", 48 "//chrome/common/net",
48 "//components/app_modal", 49 "//components/app_modal",
49 "//components/auto_login_parser", 50 "//components/auto_login_parser",
50 "//components/dom_distiller/webui", 51 "//components/dom_distiller/webui",
51 "//components/invalidation", 52 "//components/invalidation",
52 "//components/onc", 53 "//components/onc",
53 "//components/password_manager/core/browser", 54 "//components/password_manager/core/browser",
54 "//components/resources", 55 "//components/resources",
55 "//components/strings", 56 "//components/strings",
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 "//chrome/browser", 506 "//chrome/browser",
506 "//content/public/browser", 507 "//content/public/browser",
507 "//content/public/common", 508 "//content/public/common",
508 "//content/test:test_support", 509 "//content/test:test_support",
509 "//net:test_support", 510 "//net:test_support",
510 "//skia", 511 "//skia",
511 "//testing/gtest", 512 "//testing/gtest",
512 "//ui/base", 513 "//ui/base",
513 ] 514 ]
514 } 515 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698