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

Side by Side Diff: sync/sync.gyp

Issue 1330443002: Report data usage UMA for Chrome services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewArchServices
Patch Set: Addressing sclittle's comments. Created 5 years, 3 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Setting these two variables allows other targets to use the 8 # Setting these two variables allows other targets to use the
9 # sync_proto_sources variable as the list of sync protocol buffer files. 9 # sync_proto_sources variable as the list of sync protocol buffer files.
10 'sync_proto_sources_dir': 'protocol', 10 'sync_proto_sources_dir': 'protocol',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'variables': { 'enable_wexit_time_destructors': 1, }, 44 'variables': { 'enable_wexit_time_destructors': 1, },
45 'defines': [ 45 'defines': [
46 'SYNC_IMPLEMENTATION', 46 'SYNC_IMPLEMENTATION',
47 ], 47 ],
48 'include_dirs': [ 48 'include_dirs': [
49 '..', 49 '..',
50 ], 50 ],
51 'dependencies': [ 51 'dependencies': [
52 '../base/base.gyp:base', 52 '../base/base.gyp:base',
53 '../base/base.gyp:base_i18n', 53 '../base/base.gyp:base_i18n',
54 '../components/components.gyp:data_use_measurement_core',
54 '../crypto/crypto.gyp:crypto', 55 '../crypto/crypto.gyp:crypto',
55 '../google_apis/google_apis.gyp:google_apis', 56 '../google_apis/google_apis.gyp:google_apis',
56 '../net/net.gyp:net', 57 '../net/net.gyp:net',
57 '../sql/sql.gyp:sql', 58 '../sql/sql.gyp:sql',
58 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 59 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
59 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 60 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
60 '../third_party/zlib/zlib.gyp:zlib', 61 '../third_party/zlib/zlib.gyp:zlib',
61 '../url/url.gyp:url_lib', 62 '../url/url.gyp:url_lib',
62 'attachment_store_proto', 63 'attachment_store_proto',
63 'sync_proto', 64 'sync_proto',
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 }, 541 },
541 'includes': [ 542 'includes': [
542 '../build/protoc.gypi' 543 '../build/protoc.gypi'
543 ], 544 ],
544 'defines': [ 545 'defines': [
545 'SYNC_IMPLEMENTATION' 546 'SYNC_IMPLEMENTATION'
546 ], 547 ],
547 }, 548 },
548 ], 549 ],
549 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698