| 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 # GN version: //components/sessions | 8 # GN version: //components/sessions |
| 9 'target_name': 'sessions', | 9 'target_name': 'sessions', |
| 10 'type': '<(component)', | 10 'type': '<(component)', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../content/content.gyp:content_browser', | 13 '../content/content.gyp:content_browser', |
| 14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
| 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 16 '../url/url.gyp:url_lib', | 16 '../url/url.gyp:url_lib', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '..', | 19 '..', |
| 20 ], | 20 ], |
| 21 'defines': [ | 21 'defines': [ |
| 22 'SESSIONS_IMPLEMENTATION', | 22 'SESSIONS_IMPLEMENTATION', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 # Note: sources list duplicated in GN build. | 25 # Note: sources list duplicated in GN build. |
| 26 'sessions/serialized_navigation_entry.cc', | 26 'sessions/serialized_navigation_entry.cc', |
| 27 'sessions/serialized_navigation_entry.h', | 27 'sessions/serialized_navigation_entry.h', |
| 28 'sessions/session_id.cc', |
| 29 'sessions/session_id.h', |
| 28 ], | 30 ], |
| 29 'conditions': [ | 31 'conditions': [ |
| 30 ['android_webview_build == 0', { | 32 ['android_webview_build == 0', { |
| 31 'dependencies': [ | 33 'dependencies': [ |
| 32 '../sync/sync.gyp:sync', | 34 '../sync/sync.gyp:sync', |
| 33 ] | 35 ] |
| 34 }], | 36 }], |
| 35 ], | 37 ], |
| 36 }, | 38 }, |
| 37 { | 39 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 54 'conditions': [ | 56 'conditions': [ |
| 55 ['android_webview_build == 0', { | 57 ['android_webview_build == 0', { |
| 56 'dependencies': [ | 58 'dependencies': [ |
| 57 '../sync/sync.gyp:sync', | 59 '../sync/sync.gyp:sync', |
| 58 ] | 60 ] |
| 59 }], | 61 }], |
| 60 ], | 62 ], |
| 61 }, | 63 }, |
| 62 ], | 64 ], |
| 63 } | 65 } |
| OLD | NEW |