| Index: components/sessions.gypi
|
| diff --git a/components/user_prefs.gypi b/components/sessions.gypi
|
| similarity index 34%
|
| copy from components/user_prefs.gypi
|
| copy to components/sessions.gypi
|
| index a556e708ce3366131aef71bfb7576215feb66e8a..370eaae1202c7bf103cf3de322ecbf327e97ec26 100644
|
| --- a/components/user_prefs.gypi
|
| +++ b/components/sessions.gypi
|
| @@ -5,27 +5,43 @@
|
| {
|
| 'targets': [
|
| {
|
| - 'target_name': 'user_prefs',
|
| + 'target_name': 'sessions',
|
| 'type': '<(component)',
|
| 'dependencies': [
|
| '../base/base.gyp:base',
|
| - '../base/base.gyp:base_prefs',
|
| - '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
|
| + '../build/temp_gyp/googleurl.gyp:googleurl',
|
| '../content/content.gyp:content_browser',
|
| - '../ui/ui.gyp:ui',
|
| + '../skia/skia.gyp:skia',
|
| + '../sync/sync.gyp:sync',
|
| + '../third_party/protobuf/protobuf.gyp:protobuf_lite',
|
| + '../webkit/support/webkit_support.gyp:glue',
|
| ],
|
| 'include_dirs': [
|
| '..',
|
| ],
|
| 'defines': [
|
| - 'USER_PREFS_IMPLEMENTATION',
|
| + 'SESSIONS_IMPLEMENTATION',
|
| ],
|
| 'sources': [
|
| - 'user_prefs/pref_registry_syncable.cc',
|
| - 'user_prefs/pref_registry_syncable.h',
|
| - 'user_prefs/user_prefs.cc',
|
| - 'user_prefs/user_prefs.h',
|
| - 'user_prefs/user_prefs_export.h',
|
| + 'sessions/serialized_navigation_entry.cc',
|
| + 'sessions/serialized_navigation_entry.h',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'sessions_test_support',
|
| + 'type': 'static_library',
|
| + 'defines!': ['SESSIONS_IMPLEMENTATION'],
|
| + 'dependencies': [
|
| + '../skia/skia.gyp:skia',
|
| + '../sync/sync.gyp:sync',
|
| + '../testing/gtest.gyp:gtest',
|
| + ],
|
| + 'include_dirs': [
|
| + '..',
|
| + ],
|
| + 'sources': [
|
| + 'sessions/serialized_navigation_entry_test_helper.cc',
|
| + 'sessions/serialized_navigation_entry_test_helper.h',
|
| ],
|
| },
|
| ],
|
|
|