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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 8302019: Recommit fraudulent certificate reporting infrastructure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'app/policy/cloud_policy_codegen.gyp:policy', 11 'app/policy/cloud_policy_codegen.gyp:policy',
12 'browser/sync/protocol/sync_proto.gyp:sync_proto', 12 'browser/sync/protocol/sync_proto.gyp:sync_proto',
13 'cert_logger_proto',
13 'chrome_extra_resources', 14 'chrome_extra_resources',
14 'chrome_resources', 15 'chrome_resources',
15 'chrome_strings', 16 'chrome_strings',
16 'common', 17 'common',
17 'common_net', 18 'common_net',
18 'debugger', 19 'debugger',
19 'in_memory_url_index_cache_proto', 20 'in_memory_url_index_cache_proto',
20 'installer_util', 21 'installer_util',
21 'platform_locale_settings', 22 'platform_locale_settings',
22 'safe_browsing_proto', 23 'safe_browsing_proto',
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 'browser/nacl_host/nacl_broker_service_win.h', 1546 'browser/nacl_host/nacl_broker_service_win.h',
1546 'browser/nacl_host/nacl_process_host.cc', 1547 'browser/nacl_host/nacl_process_host.cc',
1547 'browser/nacl_host/nacl_process_host.h', 1548 'browser/nacl_host/nacl_process_host.h',
1548 'browser/net/browser_url_util.cc', 1549 'browser/net/browser_url_util.cc',
1549 'browser/net/browser_url_util.h', 1550 'browser/net/browser_url_util.h',
1550 'browser/net/chrome_cookie_notification_details.h', 1551 'browser/net/chrome_cookie_notification_details.h',
1551 'browser/net/chrome_dns_cert_provenance_checker.cc', 1552 'browser/net/chrome_dns_cert_provenance_checker.cc',
1552 'browser/net/chrome_dns_cert_provenance_checker.h', 1553 'browser/net/chrome_dns_cert_provenance_checker.h',
1553 'browser/net/chrome_dns_cert_provenance_checker_factory.cc', 1554 'browser/net/chrome_dns_cert_provenance_checker_factory.cc',
1554 'browser/net/chrome_dns_cert_provenance_checker_factory.h', 1555 'browser/net/chrome_dns_cert_provenance_checker_factory.h',
1556 'browser/net/chrome_fraudulent_certificate_reporter.cc',
1557 'browser/net/chrome_fraudulent_certificate_reporter.h',
1555 'browser/net/chrome_net_log.cc', 1558 'browser/net/chrome_net_log.cc',
1556 'browser/net/chrome_net_log.h', 1559 'browser/net/chrome_net_log.h',
1557 'browser/net/chrome_network_delegate.cc', 1560 'browser/net/chrome_network_delegate.cc',
1558 'browser/net/chrome_network_delegate.h', 1561 'browser/net/chrome_network_delegate.h',
1559 'browser/net/chrome_url_request_context.cc', 1562 'browser/net/chrome_url_request_context.cc',
1560 'browser/net/chrome_url_request_context.h', 1563 'browser/net/chrome_url_request_context.h',
1561 'browser/net/connect_interceptor.cc', 1564 'browser/net/connect_interceptor.cc',
1562 'browser/net/connect_interceptor.h', 1565 'browser/net/connect_interceptor.h',
1563 'browser/net/connection_tester.cc', 1566 'browser/net/connection_tester.cc',
1564 'browser/net/connection_tester.h', 1567 'browser/net/connection_tester.h',
(...skipping 3549 matching lines...) Expand 10 before | Expand all | Expand 10 after
5114 ['include', '^browser/ui/views/file_manager_dialog.h'], 5117 ['include', '^browser/ui/views/file_manager_dialog.h'],
5115 ]}, { 5118 ]}, {
5116 'sources/': [ 5119 'sources/': [
5117 ['exclude', '^browser/ui/views/file_manager_dialog.cc'], 5120 ['exclude', '^browser/ui/views/file_manager_dialog.cc'],
5118 ['exclude', '^browser/ui/views/file_manager_dialog.h'], 5121 ['exclude', '^browser/ui/views/file_manager_dialog.h'],
5119 ]} 5122 ]}
5120 ], 5123 ],
5121 ], 5124 ],
5122 }, 5125 },
5123 { 5126 {
5127 # Protobuf compiler / generator for the fraudulent certificate reporting
5128 # protocol buffer.
5129 'target_name': 'cert_logger_proto',
5130 'type': 'static_library',
5131 'sources': [ 'browser/net/cert_logger.proto', ],
5132 'variables': {
5133 'proto_in_dir': 'browser/net',
5134 'proto_out_dir': 'chrome/browser/net',
5135 },
5136 'includes': [ '../build/protoc.gypi', ],
5137 },
5138 {
5124 # Protobuf compiler / generate rule for feedback 5139 # Protobuf compiler / generate rule for feedback
5125 'target_name': 'userfeedback_proto', 5140 'target_name': 'userfeedback_proto',
5126 'type': 'static_library', 5141 'type': 'static_library',
5127 'sources': [ 5142 'sources': [
5128 'browser/userfeedback/proto/annotations.proto', 5143 'browser/userfeedback/proto/annotations.proto',
5129 'browser/userfeedback/proto/chrome.proto', 5144 'browser/userfeedback/proto/chrome.proto',
5130 'browser/userfeedback/proto/common.proto', 5145 'browser/userfeedback/proto/common.proto',
5131 'browser/userfeedback/proto/dom.proto', 5146 'browser/userfeedback/proto/dom.proto',
5132 'browser/userfeedback/proto/extension.proto', 5147 'browser/userfeedback/proto/extension.proto',
5133 'browser/userfeedback/proto/math.proto', 5148 'browser/userfeedback/proto/math.proto',
(...skipping 24 matching lines...) Expand all
5158 'type': 'static_library', 5173 'type': 'static_library',
5159 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5174 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5160 'variables': { 5175 'variables': {
5161 'proto_in_dir': 'browser/history', 5176 'proto_in_dir': 'browser/history',
5162 'proto_out_dir': 'chrome/browser/history', 5177 'proto_out_dir': 'chrome/browser/history',
5163 }, 5178 },
5164 'includes': [ '../build/protoc.gypi' ] 5179 'includes': [ '../build/protoc.gypi' ]
5165 }, 5180 },
5166 ], 5181 ],
5167 } 5182 }
OLDNEW
« no previous file with comments | « chrome/browser/net/chrome_fraudulent_certificate_reporter_unittest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698