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

Side by Side Diff: chrome/chrome_common.gypi

Issue 9232071: Upload UMA data using protocol buffers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 # 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': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 10 matching lines...) Expand all
21 '..', 21 '..',
22 ], 22 ],
23 }, 23 },
24 'dependencies': [ 24 'dependencies': [
25 # TODO(gregoryd): chrome_resources and chrome_strings could be 25 # TODO(gregoryd): chrome_resources and chrome_strings could be
26 # shared with the 64-bit target, but it does not work due to a gyp 26 # shared with the 64-bit target, but it does not work due to a gyp
27 # issue. 27 # issue.
28 'common_constants', 28 'common_constants',
29 'common_net', 29 'common_net',
30 'common_version', 30 'common_version',
31 'metrics_proto',
31 '<(DEPTH)/base/base.gyp:base', 32 '<(DEPTH)/base/base.gyp:base',
32 '<(DEPTH)/base/base.gyp:base_i18n', 33 '<(DEPTH)/base/base.gyp:base_i18n',
33 '<(DEPTH)/base/base.gyp:base_static', 34 '<(DEPTH)/base/base.gyp:base_static',
34 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 35 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
35 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', 36 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy',
36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 37 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
37 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 38 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
38 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources', 39 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources',
39 '<(DEPTH)/content/content.gyp:content_common', 40 '<(DEPTH)/content/content.gyp:content_common',
40 '<(DEPTH)/ipc/ipc.gyp:ipc', 41 '<(DEPTH)/ipc/ipc.gyp:ipc',
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 'sources': [ 447 'sources': [
447 'common/safe_browsing/client_model.proto', 448 'common/safe_browsing/client_model.proto',
448 'common/safe_browsing/csd.proto' 449 'common/safe_browsing/csd.proto'
449 ], 450 ],
450 'variables': { 451 'variables': {
451 'proto_in_dir': 'common/safe_browsing', 452 'proto_in_dir': 'common/safe_browsing',
452 'proto_out_dir': 'chrome/common/safe_browsing', 453 'proto_out_dir': 'chrome/common/safe_browsing',
453 }, 454 },
454 'includes': [ '../build/protoc.gypi' ], 455 'includes': [ '../build/protoc.gypi' ],
455 }, 456 },
457 {
458 # Protobuf compiler / generator for UMA (User Metrics Analysis).
459 'target_name': 'metrics_proto',
460 'type': 'static_library',
461 'sources': [
462 'common/metrics/proto/chrome_user_metrics_extension.proto',
463 'common/metrics/proto/histogram_event.proto',
464 'common/metrics/proto/omnibox_event.proto',
465 'common/metrics/proto/system_profile.proto',
466 'common/metrics/proto/user_action_event.proto',
467 ],
468 'variables': {
469 'proto_in_dir': 'common/metrics/proto',
470 'proto_out_dir': 'chrome/common/metrics/proto',
471 },
472 'includes': [ '../build/protoc.gypi' ],
473 },
456 ], 474 ],
457 } 475 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698