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

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

Issue 2567483002: Add proto for TLS error assistant, refactor proto generator code. (Closed)
Patch Set: nparker comments Created 4 years 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 4106 matching lines...) Expand 10 before | Expand all | Expand 10 after
4117 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", 4117 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator",
4118 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", 4118 "//device/bluetooth/public/interfaces:experimental_interfaces__generator",
4119 "//url/mojo:url_mojom_gurl__generator", 4119 "//url/mojo:url_mojom_gurl__generator",
4120 "//url/mojo:url_mojom_origin__generator", 4120 "//url/mojo:url_mojom_origin__generator",
4121 ] 4121 ]
4122 4122
4123 if (safe_browsing_mode > 0) { 4123 if (safe_browsing_mode > 0) {
4124 deps += 4124 deps +=
4125 [ "//chrome/browser/resources/safe_browsing:make_file_types_protobuf" ] 4125 [ "//chrome/browser/resources/safe_browsing:make_file_types_protobuf" ]
4126 } 4126 }
4127 deps += [ "//chrome/browser/resources/ssl/tls_error_assistant:make_tls_error_a ssistant_protobuf" ]
4127 } 4128 }
4128 4129
4129 if (is_chrome_branded) { 4130 if (is_chrome_branded) {
4130 action("chrome_internal_resources_gen") { 4131 action("chrome_internal_resources_gen") {
4131 script = "internal/transform_additional_modules_list.py" 4132 script = "internal/transform_additional_modules_list.py"
4132 sources = [ 4133 sources = [
4133 "internal/resources/additional_modules_list.input", 4134 "internal/resources/additional_modules_list.input",
4134 ] 4135 ]
4135 outputs = [ 4136 outputs = [
4136 additional_modules_list_file, 4137 additional_modules_list_file,
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
4451 # linking all of the test support. 4452 # linking all of the test support.
4452 static_library("pepper_cdm_test_constants") { 4453 static_library("pepper_cdm_test_constants") {
4453 testonly = true 4454 testonly = true
4454 visibility = [ "//chrome/*" ] 4455 visibility = [ "//chrome/*" ]
4455 sources = [ 4456 sources = [
4456 "media/pepper_cdm_test_constants.cc", 4457 "media/pepper_cdm_test_constants.cc",
4457 "media/pepper_cdm_test_constants.h", 4458 "media/pepper_cdm_test_constants.h",
4458 ] 4459 ]
4459 } 4460 }
4460 } 4461 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698