OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'dependencies': [ |
| 7 '<(DEPTH)/base/base.gyp:base', |
| 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 9 '../content/content.gyp:content_browser', |
| 10 '../skia/skia.gyp:skia', |
| 11 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 12 '../ui/base/ui_base.gyp:ui_base', |
| 13 '../url/url.gyp:url_lib', |
| 14 ], |
| 15 'include_dirs': [ |
| 16 '..', |
| 17 ], |
| 18 'defines': [ |
| 19 'SESSIONS_IMPLEMENTATION', |
| 20 ], |
| 21 'sources': [ |
| 22 # Note: sources list duplicated in GN build. |
| 23 'core/serialized_navigation_driver.h', |
| 24 'serialized_navigation_entry.cc', |
| 25 'serialized_navigation_entry.h', |
| 26 'session_id.cc', |
| 27 'session_id.h', |
| 28 ], |
| 29 'conditions': [ |
| 30 ['android_webview_build == 0', { |
| 31 'dependencies': [ |
| 32 '../sync/sync.gyp:sync', |
| 33 ] |
| 34 }], |
| 35 ], |
| 36 } |
OLD | NEW |