blob: 4d2805d4f61892b475b2efb23e5ce3a68b28dbe9 [file] [log] [blame]
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'sessions',
'type': '<(component)',
'dependencies': [
'../base/base.gyp:base',
'../content/content.gyp:content_browser',
'../skia/skia.gyp:skia',
'../third_party/protobuf/protobuf.gyp:protobuf_lite',
'../url/url.gyp:url_lib',
],
'include_dirs': [
'..',
],
'defines': [
'SESSIONS_IMPLEMENTATION',
],
'sources': [
'sessions/serialized_navigation_entry.cc',
'sessions/serialized_navigation_entry.h',
],
'conditions': [
['android_webview_build == 0', {
'dependencies': [
'../sync/sync.gyp:sync',
]
}],
],
},
{
'target_name': 'sessions_test_support',
'type': 'static_library',
'defines!': ['SESSIONS_IMPLEMENTATION'],
'dependencies': [
'../skia/skia.gyp:skia',
'../testing/gtest.gyp:gtest',
],
'include_dirs': [
'..',
],
'sources': [
'sessions/serialized_navigation_entry_test_helper.cc',
'sessions/serialized_navigation_entry_test_helper.h',
],
'conditions': [
['android_webview_build == 0', {
'dependencies': [
'../sync/sync.gyp:sync',
]
}],
],
},
],
}