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

Side by Side Diff: chrome/chrome_common.gypi

Issue 49253005: Fetch extension blacklist states from SafeBrowsing server (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add unit tests, fix bugs. Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 ], 748 ],
749 }, 749 },
750 { 750 {
751 # Protobuf compiler / generator for the safebrowsing client 751 # Protobuf compiler / generator for the safebrowsing client
752 # model proto and the client-side detection (csd) request 752 # model proto and the client-side detection (csd) request
753 # protocol buffer. 753 # protocol buffer.
754 'target_name': 'safe_browsing_proto', 754 'target_name': 'safe_browsing_proto',
755 'type': 'static_library', 755 'type': 'static_library',
756 'sources': [ 756 'sources': [
757 'common/safe_browsing/client_model.proto', 757 'common/safe_browsing/client_model.proto',
758 'common/safe_browsing/crx_info.proto',
758 'common/safe_browsing/csd.proto' 759 'common/safe_browsing/csd.proto'
759 ], 760 ],
760 'variables': { 761 'variables': {
761 'proto_in_dir': 'common/safe_browsing', 762 'proto_in_dir': 'common/safe_browsing',
762 'proto_out_dir': 'chrome/common/safe_browsing', 763 'proto_out_dir': 'chrome/common/safe_browsing',
763 }, 764 },
764 'includes': [ '../build/protoc.gypi' ], 765 'includes': [ '../build/protoc.gypi' ],
765 }, 766 },
766 { 767 {
767 # Protobuf compiler / generator for UMA (User Metrics Analysis). 768 # Protobuf compiler / generator for UMA (User Metrics Analysis).
(...skipping 11 matching lines...) Expand all
779 'common/metrics/proto/user_action_event.proto', 780 'common/metrics/proto/user_action_event.proto',
780 ], 781 ],
781 'variables': { 782 'variables': {
782 'proto_in_dir': 'common/metrics/proto', 783 'proto_in_dir': 'common/metrics/proto',
783 'proto_out_dir': 'chrome/common/metrics/proto', 784 'proto_out_dir': 'chrome/common/metrics/proto',
784 }, 785 },
785 'includes': [ '../build/protoc.gypi' ], 786 'includes': [ '../build/protoc.gypi' ],
786 }, 787 },
787 ], 788 ],
788 } 789 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698