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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
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_notifier', |
67 'sync_proto', | 68 'sync_proto', |
68 ], | 69 ], |
69 'export_dependent_settings': [ | 70 'export_dependent_settings': [ |
| 71 'sync_notifier', |
70 'sync_proto', | 72 'sync_proto', |
71 ], | 73 ], |
72 }, | 74 }, |
73 | 75 |
74 # The sync internal API library. | 76 # The sync internal API library. |
75 { | 77 { |
76 'target_name': 'sync_internal_api', | 78 'target_name': 'sync_internal_api', |
77 'type': 'static_library', | 79 'type': 'static_library', |
78 'variables': { 'enable_wexit_time_destructors': 1, }, | 80 'variables': { 'enable_wexit_time_destructors': 1, }, |
79 'includes': [ | 81 'includes': [ |
(...skipping 11 matching lines...) Expand all Loading... |
91 }, | 93 }, |
92 | 94 |
93 # The sync notifications library. | 95 # The sync notifications library. |
94 { | 96 { |
95 'target_name': 'sync_notifier', | 97 'target_name': 'sync_notifier', |
96 'type': 'static_library', | 98 'type': 'static_library', |
97 'variables': { 'enable_wexit_time_destructors': 1, }, | 99 'variables': { 'enable_wexit_time_destructors': 1, }, |
98 'includes': [ | 100 'includes': [ |
99 'sync_notifier.gypi', | 101 'sync_notifier.gypi', |
100 ], | 102 ], |
101 'dependencies': [ | |
102 'sync_core', | |
103 ], | |
104 }, | 103 }, |
105 | 104 |
106 # The sync protocol buffer library. | 105 # The sync protocol buffer library. |
107 { | 106 { |
108 'target_name': 'sync_proto', | 107 'target_name': 'sync_proto', |
109 'type': 'static_library', | 108 'type': 'static_library', |
110 'variables': { 'enable_wexit_time_destructors': 1, }, | 109 'variables': { 'enable_wexit_time_destructors': 1, }, |
111 'includes': [ | 110 'includes': [ |
112 'sync_proto.gypi', | 111 'sync_proto.gypi', |
113 ], | 112 ], |
(...skipping 12 matching lines...) Expand all Loading... |
126 'sync_core.gypi', | 125 'sync_core.gypi', |
127 'sync_internal_api.gypi', | 126 'sync_internal_api.gypi', |
128 'sync_notifier.gypi', | 127 'sync_notifier.gypi', |
129 'sync_proto.gypi', | 128 'sync_proto.gypi', |
130 ], | 129 ], |
131 }, | 130 }, |
132 ], | 131 ], |
133 }], | 132 }], |
134 ], | 133 ], |
135 } | 134 } |
OLD | NEW |