OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 3503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3514 'browser/local_discovery/privet_http_asynchronous_factory_impl.cc', | 3514 'browser/local_discovery/privet_http_asynchronous_factory_impl.cc', |
3515 'browser/local_discovery/privet_http_asynchronous_factory_impl.h', | 3515 'browser/local_discovery/privet_http_asynchronous_factory_impl.h', |
3516 ] | 3516 ] |
3517 }], | 3517 }], |
3518 ['enable_autofill_dialog!=1 or OS=="android" or OS=="ios"', { | 3518 ['enable_autofill_dialog!=1 or OS=="android" or OS=="ios"', { |
3519 'sources!': [ | 3519 'sources!': [ |
3520 'browser/autofill/validation_rules_storage_factory.cc', | 3520 'browser/autofill/validation_rules_storage_factory.cc', |
3521 'browser/autofill/validation_rules_storage_factory.h', | 3521 'browser/autofill/validation_rules_storage_factory.h', |
3522 ], | 3522 ], |
3523 }], | 3523 }], |
| 3524 [ 'enable_wifi_bootstrapping==1', { |
| 3525 'sources': [ |
| 3526 'browser/local_discovery/wifi/wifi_manager.cc', |
| 3527 'browser/local_discovery/wifi/wifi_manager.h', |
| 3528 ], |
| 3529 'conditions' : [ |
| 3530 [ 'OS=="win" or OS=="mac"', { |
| 3531 'sources': [ |
| 3532 'browser/local_discovery/wifi/wifi_manager_nonchromeos.cc', |
| 3533 'browser/local_discovery/wifi/wifi_manager_nonchromeos.h', |
| 3534 ] |
| 3535 }] |
| 3536 ] |
| 3537 }], |
3524 ], | 3538 ], |
3525 }, | 3539 }, |
3526 { | 3540 { |
3527 # Protobuf compiler / generator for the fraudulent certificate reporting | 3541 # Protobuf compiler / generator for the fraudulent certificate reporting |
3528 # protocol buffer. | 3542 # protocol buffer. |
3529 'target_name': 'cert_logger_proto', | 3543 'target_name': 'cert_logger_proto', |
3530 'type': 'static_library', | 3544 'type': 'static_library', |
3531 'sources': [ 'browser/net/cert_logger.proto', ], | 3545 'sources': [ 'browser/net/cert_logger.proto', ], |
3532 'variables': { | 3546 'variables': { |
3533 'proto_in_dir': 'browser/net', | 3547 'proto_in_dir': 'browser/net', |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3754 'package_name': 'org/chromium/chrome/browser', | 3768 'package_name': 'org/chromium/chrome/browser', |
3755 'template_deps': ['browser/android/tab_load_status.h'], | 3769 'template_deps': ['browser/android/tab_load_status.h'], |
3756 }, | 3770 }, |
3757 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3771 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3758 }, | 3772 }, |
3759 ], | 3773 ], |
3760 }, | 3774 }, |
3761 ], | 3775 ], |
3762 ], | 3776 ], |
3763 } | 3777 } |
OLD | NEW |