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 '../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 'content/content_serialized_navigation_builder.cc', |
| 24 'content/content_serialized_navigation_builder.h', |
| 25 'content/content_serialized_navigation_driver.cc', |
| 26 'content/content_serialized_navigation_driver.h', |
| 27 ], |
| 28 'conditions': [ |
| 29 ['android_webview_build == 0', { |
| 30 'dependencies': [ |
| 31 '../sync/sync.gyp:sync', |
| 32 ] |
| 33 }], |
| 34 ], |
| 35 } |
OLD | NEW |