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 'variables': { | 6 'variables': { |
7 # All .cc, .h, .m, and .mm files under browser except for: | 7 # All .cc, .h, .m, and .mm files under browser except for: |
8 # * tests and mocks. | 8 # * tests and mocks. |
9 # * code below browser/chromeos | 9 # * code below browser/chromeos |
10 # * code below browser/extensions | 10 # * code below browser/extensions |
(...skipping 2829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2840 'chrome_resources.gyp:chrome_resources', | 2840 'chrome_resources.gyp:chrome_resources', |
2841 'chrome_resources.gyp:chrome_strings', | 2841 'chrome_resources.gyp:chrome_strings', |
2842 'chrome_resources.gyp:chrome_strings_map', | 2842 'chrome_resources.gyp:chrome_strings_map', |
2843 'chrome_resources.gyp:platform_locale_settings', | 2843 'chrome_resources.gyp:platform_locale_settings', |
2844 'chrome_resources.gyp:theme_resources', | 2844 'chrome_resources.gyp:theme_resources', |
2845 'common', | 2845 'common', |
2846 'common_net', | 2846 'common_net', |
2847 'in_memory_url_index_cache_proto', | 2847 'in_memory_url_index_cache_proto', |
2848 'probe_message_proto', | 2848 'probe_message_proto', |
2849 'suggestions_proto', | 2849 'suggestions_proto', |
| 2850 'variations_proto', |
2850 '../components/components.gyp:autocomplete', | 2851 '../components/components.gyp:autocomplete', |
2851 '../components/components.gyp:autofill_core_browser', | 2852 '../components/components.gyp:autofill_core_browser', |
2852 '../components/components.gyp:bookmarks_browser', | 2853 '../components/components.gyp:bookmarks_browser', |
2853 '../components/components.gyp:captive_portal', | 2854 '../components/components.gyp:captive_portal', |
2854 '../components/components.gyp:cloud_devices_common', | 2855 '../components/components.gyp:cloud_devices_common', |
2855 '../components/components.gyp:component_metrics_proto', | 2856 '../components/components.gyp:component_metrics_proto', |
2856 '../components/components.gyp:data_reduction_proxy_browser', | 2857 '../components/components.gyp:data_reduction_proxy_browser', |
2857 '../components/components.gyp:domain_reliability', | 2858 '../components/components.gyp:domain_reliability', |
2858 '../components/components.gyp:favicon_base', | 2859 '../components/components.gyp:favicon_base', |
2859 '../components/components.gyp:favicon_core', | 2860 '../components/components.gyp:favicon_core', |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3394 [ 'OS=="win" or OS=="mac"', { | 3395 [ 'OS=="win" or OS=="mac"', { |
3395 'sources': [ | 3396 'sources': [ |
3396 '<@(chrome_browser_win_mac_wifi_bootstrapping_sources)', | 3397 '<@(chrome_browser_win_mac_wifi_bootstrapping_sources)', |
3397 ] | 3398 ] |
3398 }] | 3399 }] |
3399 ] | 3400 ] |
3400 }], | 3401 }], |
3401 ], | 3402 ], |
3402 }, | 3403 }, |
3403 { | 3404 { |
| 3405 # Protobuf compiler / generator for UMA (User Metrics Analysis). |
| 3406 |
| 3407 # GN version: //chrome/browser/metrics/variations/proto:proto |
| 3408 'target_name': 'variations_proto', |
| 3409 'type': 'static_library', |
| 3410 'sources': [ |
| 3411 'browser/metrics/variations/proto/chrome_experiments.proto', |
| 3412 ], |
| 3413 'variables': { |
| 3414 'proto_in_dir': 'browser/metrics/variations/proto', |
| 3415 'proto_out_dir': 'chrome/browser/metrics/variations/proto', |
| 3416 }, |
| 3417 'includes': [ '../build/protoc.gypi' ], |
| 3418 }, |
| 3419 { |
3404 # Protobuf compiler / generator for the fraudulent certificate reporting | 3420 # Protobuf compiler / generator for the fraudulent certificate reporting |
3405 # protocol buffer. | 3421 # protocol buffer. |
3406 'target_name': 'cert_logger_proto', | 3422 'target_name': 'cert_logger_proto', |
3407 'type': 'static_library', | 3423 'type': 'static_library', |
3408 'sources': [ 'browser/net/cert_logger.proto', ], | 3424 'sources': [ 'browser/net/cert_logger.proto', ], |
3409 'variables': { | 3425 'variables': { |
3410 'proto_in_dir': 'browser/net', | 3426 'proto_in_dir': 'browser/net', |
3411 'proto_out_dir': 'chrome/browser/net', | 3427 'proto_out_dir': 'chrome/browser/net', |
3412 }, | 3428 }, |
3413 'includes': [ '../build/protoc.gypi', ], | 3429 'includes': [ '../build/protoc.gypi', ], |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3579 'package_name': 'org/chromium/chrome/browser', | 3595 'package_name': 'org/chromium/chrome/browser', |
3580 'template_deps': ['browser/android/tab_load_status.h'], | 3596 'template_deps': ['browser/android/tab_load_status.h'], |
3581 }, | 3597 }, |
3582 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3598 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3583 }, | 3599 }, |
3584 ], | 3600 ], |
3585 }, | 3601 }, |
3586 ], | 3602 ], |
3587 ], | 3603 ], |
3588 } | 3604 } |
OLD | NEW |