OLD | NEW |
---|---|
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 }, | 8 }, |
9 | 9 |
10 'includes': [ | 10 'includes': [ |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 # The core sync library. | 58 # The core sync library. |
59 { | 59 { |
60 'target_name': 'sync_core', | 60 'target_name': 'sync_core', |
61 'type': 'static_library', | 61 'type': 'static_library', |
62 'variables': { 'enable_wexit_time_destructors': 1, }, | 62 'variables': { 'enable_wexit_time_destructors': 1, }, |
63 'includes': [ | 63 'includes': [ |
64 'sync_core.gypi', | 64 'sync_core.gypi', |
65 ], | 65 ], |
66 'dependencies': [ | 66 'dependencies': [ |
67 'sync_proto', | 67 'sync_proto', |
68 'sync_notifier', | |
68 ], | 69 ], |
69 'export_dependent_settings': [ | 70 'export_dependent_settings': [ |
70 'sync_proto', | 71 'sync_proto', |
Raghu Simha
2013/08/30 22:12:43
You will need to add sync_notifier to the export_d
rlarocque
2013/08/30 23:28:08
Done.
Raghu Simha
2013/08/30 23:35:50
nit: In case you haven't already landed this, sync
| |
71 ], | 72 ], |
72 }, | 73 }, |
73 | 74 |
74 # The sync internal API library. | 75 # The sync internal API library. |
75 { | 76 { |
76 'target_name': 'sync_internal_api', | 77 'target_name': 'sync_internal_api', |
77 'type': 'static_library', | 78 'type': 'static_library', |
78 'variables': { 'enable_wexit_time_destructors': 1, }, | 79 'variables': { 'enable_wexit_time_destructors': 1, }, |
79 'includes': [ | 80 'includes': [ |
80 'sync_internal_api.gypi', | 81 'sync_internal_api.gypi', |
(...skipping 11 matching lines...) Expand all Loading... | |
92 | 93 |
93 # The sync notifications library. | 94 # The sync notifications library. |
94 { | 95 { |
95 'target_name': 'sync_notifier', | 96 'target_name': 'sync_notifier', |
96 'type': 'static_library', | 97 'type': 'static_library', |
97 'variables': { 'enable_wexit_time_destructors': 1, }, | 98 'variables': { 'enable_wexit_time_destructors': 1, }, |
98 'includes': [ | 99 'includes': [ |
99 'sync_notifier.gypi', | 100 'sync_notifier.gypi', |
100 ], | 101 ], |
101 'dependencies': [ | 102 'dependencies': [ |
102 'sync_core', | |
103 ], | 103 ], |
104 }, | 104 }, |
105 | 105 |
106 # The sync protocol buffer library. | 106 # The sync protocol buffer library. |
107 { | 107 { |
108 'target_name': 'sync_proto', | 108 'target_name': 'sync_proto', |
109 'type': 'static_library', | 109 'type': 'static_library', |
110 'variables': { 'enable_wexit_time_destructors': 1, }, | 110 'variables': { 'enable_wexit_time_destructors': 1, }, |
111 'includes': [ | 111 'includes': [ |
112 'sync_proto.gypi', | 112 'sync_proto.gypi', |
(...skipping 13 matching lines...) Expand all Loading... | |
126 'sync_core.gypi', | 126 'sync_core.gypi', |
127 'sync_internal_api.gypi', | 127 'sync_internal_api.gypi', |
128 'sync_notifier.gypi', | 128 'sync_notifier.gypi', |
129 'sync_proto.gypi', | 129 'sync_proto.gypi', |
130 ], | 130 ], |
131 }, | 131 }, |
132 ], | 132 ], |
133 }], | 133 }], |
134 ], | 134 ], |
135 } | 135 } |
OLD | NEW |