| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'target_name': 'sync_notifier', | 97 'target_name': 'sync_notifier', |
| 98 'type': 'static_library', | 98 'type': 'static_library', |
| 99 'variables': { 'enable_wexit_time_destructors': 1, }, | 99 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 100 'includes': [ | 100 'includes': [ |
| 101 'sync_notifier.gypi', | 101 'sync_notifier.gypi', |
| 102 ], | 102 ], |
| 103 }, | 103 }, |
| 104 | 104 |
| 105 # The sync protocol buffer library. | 105 # The sync protocol buffer library. |
| 106 { | 106 { |
| 107 # GN version: //sync/protocol |
| 107 'target_name': 'sync_proto', | 108 'target_name': 'sync_proto', |
| 108 'type': 'static_library', | 109 'type': 'static_library', |
| 109 'variables': { 'enable_wexit_time_destructors': 1, }, | 110 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 110 'includes': [ | 111 'includes': [ |
| 111 'sync_proto.gypi', | 112 'sync_proto.gypi', |
| 112 ], | 113 ], |
| 113 }, | 114 }, |
| 114 ], | 115 ], |
| 115 }, | 116 }, |
| 116 { # component != static_library | 117 { # component != static_library |
| 117 'targets': [ | 118 'targets': [ |
| 118 # The public sync shared library target. | 119 # The public sync shared library target. |
| 119 { | 120 { |
| 120 'target_name': 'sync', | 121 'target_name': 'sync', |
| 121 'type': 'shared_library', | 122 'type': 'shared_library', |
| 122 'variables': { 'enable_wexit_time_destructors': 1, }, | 123 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 123 'includes': [ | 124 'includes': [ |
| 124 'sync_api.gypi', | 125 'sync_api.gypi', |
| 125 'sync_core.gypi', | 126 'sync_core.gypi', |
| 126 'sync_internal_api.gypi', | 127 'sync_internal_api.gypi', |
| 127 'sync_notifier.gypi', | 128 'sync_notifier.gypi', |
| 128 'sync_proto.gypi', | 129 'sync_proto.gypi', |
| 129 ], | 130 ], |
| 130 }, | 131 }, |
| 131 ], | 132 ], |
| 132 }], | 133 }], |
| 133 ], | 134 ], |
| 134 } | 135 } |
| OLD | NEW |