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 3468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3479 'browser/local_discovery/privet_http_asynchronous_factory_impl.cc', | 3479 'browser/local_discovery/privet_http_asynchronous_factory_impl.cc', |
3480 'browser/local_discovery/privet_http_asynchronous_factory_impl.h', | 3480 'browser/local_discovery/privet_http_asynchronous_factory_impl.h', |
3481 ] | 3481 ] |
3482 }], | 3482 }], |
3483 ['enable_autofill_dialog!=1 or OS=="android" or OS=="ios"', { | 3483 ['enable_autofill_dialog!=1 or OS=="android" or OS=="ios"', { |
3484 'sources!': [ | 3484 'sources!': [ |
3485 'browser/autofill/validation_rules_storage_factory.cc', | 3485 'browser/autofill/validation_rules_storage_factory.cc', |
3486 'browser/autofill/validation_rules_storage_factory.h', | 3486 'browser/autofill/validation_rules_storage_factory.h', |
3487 ], | 3487 ], |
3488 }], | 3488 }], |
| 3489 [ 'enable_wifi_bootstrapping==1', { |
| 3490 'sources': [ |
| 3491 'browser/local_discovery/wifi/wifi_manager.cc', |
| 3492 'browser/local_discovery/wifi/wifi_manager.h', |
| 3493 ], |
| 3494 'conditions' : [ |
| 3495 [ 'OS=="win" or OS=="mac"', { |
| 3496 'sources': [ |
| 3497 'browser/local_discovery/wifi/wifi_manager_nonchromeos.cc', |
| 3498 'browser/local_discovery/wifi/wifi_manager_nonchromeos.h', |
| 3499 ] |
| 3500 }] |
| 3501 ] |
| 3502 }], |
3489 ], | 3503 ], |
3490 }, | 3504 }, |
3491 { | 3505 { |
3492 # Protobuf compiler / generator for the fraudulent certificate reporting | 3506 # Protobuf compiler / generator for the fraudulent certificate reporting |
3493 # protocol buffer. | 3507 # protocol buffer. |
3494 'target_name': 'cert_logger_proto', | 3508 'target_name': 'cert_logger_proto', |
3495 'type': 'static_library', | 3509 'type': 'static_library', |
3496 'sources': [ 'browser/net/cert_logger.proto', ], | 3510 'sources': [ 'browser/net/cert_logger.proto', ], |
3497 'variables': { | 3511 'variables': { |
3498 'proto_in_dir': 'browser/net', | 3512 'proto_in_dir': 'browser/net', |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3718 'package_name': 'org/chromium/chrome/browser', | 3732 'package_name': 'org/chromium/chrome/browser', |
3719 'template_deps': ['browser/android/tab_load_status.h'], | 3733 'template_deps': ['browser/android/tab_load_status.h'], |
3720 }, | 3734 }, |
3721 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3735 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3722 }, | 3736 }, |
3723 ], | 3737 ], |
3724 }, | 3738 }, |
3725 ], | 3739 ], |
3726 ], | 3740 ], |
3727 } | 3741 } |
OLD | NEW |