| 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': 'sessions', | 8 'target_name': 'sessions', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../build/temp_gyp/googleurl.gyp:googleurl', | |
| 13 '../content/content.gyp:content_browser', | 12 '../content/content.gyp:content_browser', |
| 14 '../skia/skia.gyp:skia', | 13 '../skia/skia.gyp:skia', |
| 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 14 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 15 '../url/url.gyp:url', |
| 16 ], | 16 ], |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '..', | 18 '..', |
| 19 ], | 19 ], |
| 20 'defines': [ | 20 'defines': [ |
| 21 'SESSIONS_IMPLEMENTATION', | 21 'SESSIONS_IMPLEMENTATION', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'sessions/serialized_navigation_entry.cc', | 24 'sessions/serialized_navigation_entry.cc', |
| 25 'sessions/serialized_navigation_entry.h', | 25 'sessions/serialized_navigation_entry.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 55 'conditions': [ | 55 'conditions': [ |
| 56 ['android_webview_build == 0', { | 56 ['android_webview_build == 0', { |
| 57 'dependencies': [ | 57 'dependencies': [ |
| 58 '../sync/sync.gyp:sync', | 58 '../sync/sync.gyp:sync', |
| 59 ] | 59 ] |
| 60 }], | 60 }], |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 ], | 63 ], |
| 64 } | 64 } |
| OLD | NEW |