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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 334273003: Move //chrome/common/metrics/proto to //chrome/browser/metrics/variations/proto. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 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 2827 matching lines...) Expand 10 before | Expand all | Expand 10 after
2838 'cert_logger_proto', 2838 'cert_logger_proto',
2839 'chrome_resources.gyp:chrome_extra_resources', 2839 'chrome_resources.gyp:chrome_extra_resources',
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 'metrics_proto',
2848 'probe_message_proto', 2849 'probe_message_proto',
2849 'suggestions_proto', 2850 'suggestions_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',
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': 'metrics_proto',
Ilya Sherman 2014/06/30 21:02:52 nit: variations_proto
tfarina 2014/07/01 00:20:53 Done.
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/metrics/variations/variations_http_header_provider_unittest.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698