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

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

Issue 829583002: Validate hash_sha256 checksum on .crx update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittest build for windows. Created 5 years, 10 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 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [] 10 sources = []
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 "content_hash_reader.h", 332 "content_hash_reader.h",
333 "content_hash_tree.cc", 333 "content_hash_tree.cc",
334 "content_hash_tree.h", 334 "content_hash_tree.h",
335 "content_verifier.cc", 335 "content_verifier.cc",
336 "content_verifier.h", 336 "content_verifier.h",
337 "content_verifier_delegate.h", 337 "content_verifier_delegate.h",
338 "content_verifier_io_data.cc", 338 "content_verifier_io_data.cc",
339 "content_verifier_io_data.h", 339 "content_verifier_io_data.h",
340 "content_verify_job.cc", 340 "content_verify_job.cc",
341 "content_verify_job.h", 341 "content_verify_job.h",
342 "crx_file_info.cc",
343 "crx_file_info.h",
342 "error_map.cc", 344 "error_map.cc",
343 "error_map.h", 345 "error_map.h",
344 "event_listener_map.cc", 346 "event_listener_map.cc",
345 "event_listener_map.h", 347 "event_listener_map.h",
346 "event_router.cc", 348 "event_router.cc",
347 "event_router.h", 349 "event_router.h",
348 "extension_error.cc", 350 "extension_error.cc",
349 "extension_error.h", 351 "extension_error.h",
350 "extension_function.cc", 352 "extension_function.cc",
351 "extension_function.h", 353 "extension_function.h",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 "api/networking_private/networking_private_service_client.cc", 611 "api/networking_private/networking_private_service_client.cc",
610 "api/networking_private/networking_private_service_client.h", 612 "api/networking_private/networking_private_service_client.h",
611 ] 613 ]
612 } 614 }
613 } 615 }
614 616
615 if (is_win) { 617 if (is_win) {
616 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations. 618 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations.
617 } 619 }
618 } 620 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/update_manifest_unittest.cc ('k') | extensions/browser/crx_file_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698