| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'pref_registry', | 8 'target_name': 'pref_registry', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../base/base.gyp:base_prefs', | 12 '../base/base.gyp:base_prefs', |
| 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 14 '../ui/base/ui_base.gyp:ui_base', | 14 '../ui/base/ui_base.gyp:ui_base', |
| 15 ], | 15 ], |
| 16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '..', | 17 '..', |
| 18 ], | 18 ], |
| 19 'defines': [ | 19 'defines': [ |
| 20 'PREF_REGISTRY_IMPLEMENTATION', | 20 'PREF_REGISTRY_IMPLEMENTATION', |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'pref_registry/pref_registry_export.h', | 23 'pref_registry/pref_registry_export.h', |
| 24 'pref_registry/pref_registry_syncable.cc', | 24 'pref_registry/pref_registry_syncable.cc', |
| 25 'pref_registry/pref_registry_syncable.h', | 25 'pref_registry/pref_registry_syncable.h', |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 { |
| 29 'target_name': 'pref_registry_test_support', |
| 30 'type': 'static_library', |
| 31 'dependencies': [ |
| 32 'pref_registry', |
| 33 ], |
| 34 'include_dirs': [ |
| 35 '..', |
| 36 ], |
| 37 'sources': [ |
| 38 'pref_registry/testing_pref_service_syncable.cc', |
| 39 'pref_registry/testing_pref_service_syncable.h', |
| 40 ], |
| 41 }, |
| 28 ], | 42 ], |
| 29 } | 43 } |
| OLD | NEW |