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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10020051: Open a login tab on captive portal detection on SSL loads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Sync Created 8 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 'browser/browsing_data_remover.cc', 348 'browser/browsing_data_remover.cc',
349 'browser/browsing_data_remover.h', 349 'browser/browsing_data_remover.h',
350 'browser/browsing_data_server_bound_cert_helper.cc', 350 'browser/browsing_data_server_bound_cert_helper.cc',
351 'browser/browsing_data_server_bound_cert_helper.h', 351 'browser/browsing_data_server_bound_cert_helper.h',
352 'browser/feedback/feedback_data.cc', 352 'browser/feedback/feedback_data.cc',
353 'browser/feedback/feedback_data.h', 353 'browser/feedback/feedback_data.h',
354 'browser/feedback/feedback_util.cc', 354 'browser/feedback/feedback_util.cc',
355 'browser/feedback/feedback_util.h', 355 'browser/feedback/feedback_util.h',
356 'browser/cancelable_request.cc', 356 'browser/cancelable_request.cc',
357 'browser/cancelable_request.h', 357 'browser/cancelable_request.h',
358 'browser/captive_portal/captive_portal_login_detector.cc',
359 'browser/captive_portal/captive_portal_login_detector.h',
358 'browser/captive_portal/captive_portal_service.cc', 360 'browser/captive_portal/captive_portal_service.cc',
359 'browser/captive_portal/captive_portal_service.h', 361 'browser/captive_portal/captive_portal_service.h',
360 'browser/captive_portal/captive_portal_service_factory.cc', 362 'browser/captive_portal/captive_portal_service_factory.cc',
361 'browser/captive_portal/captive_portal_service_factory.h', 363 'browser/captive_portal/captive_portal_service_factory.h',
364 'browser/captive_portal/captive_portal_tab_helper.cc',
365 'browser/captive_portal/captive_portal_tab_helper.h',
366 'browser/captive_portal/captive_portal_tab_reloader.cc',
367 'browser/captive_portal/captive_portal_tab_reloader.h',
362 'browser/certificate_manager_model.cc', 368 'browser/certificate_manager_model.cc',
363 'browser/certificate_manager_model.h', 369 'browser/certificate_manager_model.h',
364 'browser/certificate_viewer.cc', 370 'browser/certificate_viewer.cc',
365 'browser/certificate_viewer.h', 371 'browser/certificate_viewer.h',
366 'browser/character_encoding.cc', 372 'browser/character_encoding.cc',
367 'browser/character_encoding.h', 373 'browser/character_encoding.h',
368 'browser/chrome_benchmarking_message_filter.cc', 374 'browser/chrome_benchmarking_message_filter.cc',
369 'browser/chrome_benchmarking_message_filter.h', 375 'browser/chrome_benchmarking_message_filter.h',
370 'browser/chrome_browser_application_mac.h', 376 'browser/chrome_browser_application_mac.h',
371 'browser/chrome_browser_application_mac.mm', 377 'browser/chrome_browser_application_mac.mm',
(...skipping 4248 matching lines...) Expand 10 before | Expand all | Expand 10 after
4620 ], 4626 ],
4621 'sources/': [ 4627 'sources/': [
4622 ['exclude', '^browser/themes/'], 4628 ['exclude', '^browser/themes/'],
4623 ], 4629 ],
4624 }], 4630 }],
4625 ['enable_automation!=1', { 4631 ['enable_automation!=1', {
4626 'sources/': [ 4632 'sources/': [
4627 ['exclude', '^browser/automation/'], 4633 ['exclude', '^browser/automation/'],
4628 ], 4634 ],
4629 }], 4635 }],
4636 ['enable_captive_portal_detection!=1', {
4637 'sources/': [
4638 ['exclude', '^browser/captive_portal/'],
4639 ],
4640 }],
4630 ['enable_session_service!=1', { 4641 ['enable_session_service!=1', {
4631 'sources!': [ 4642 'sources!': [
4632 'browser/sessions/session_restore.cc', 4643 'browser/sessions/session_restore.cc',
4633 'browser/sessions/session_service.cc', 4644 'browser/sessions/session_service.cc',
4634 'browser/sessions/session_service.h', 4645 'browser/sessions/session_service.h',
4635 'browser/sessions/session_service_factory.cc', 4646 'browser/sessions/session_service_factory.cc',
4636 'browser/sessions/session_service_factory.h', 4647 'browser/sessions/session_service_factory.h',
4637 ], 4648 ],
4638 }], 4649 }],
4639 ['OS=="android"', { 4650 ['OS=="android"', {
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
5190 'browser/metrics/proto/study.proto', 5201 'browser/metrics/proto/study.proto',
5191 ], 5202 ],
5192 'variables': { 5203 'variables': {
5193 'proto_in_dir': 'browser/metrics/proto', 5204 'proto_in_dir': 'browser/metrics/proto',
5194 'proto_out_dir': 'chrome/browser/metrics/proto', 5205 'proto_out_dir': 'chrome/browser/metrics/proto',
5195 }, 5206 },
5196 'includes': [ '../build/protoc.gypi' ] 5207 'includes': [ '../build/protoc.gypi' ]
5197 }, 5208 },
5198 ], 5209 ],
5199 } 5210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698