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 '../content/content.gyp:content_browser', | 12 '../content/content.gyp:content_browser', |
13 '../skia/skia.gyp:skia', | 13 '../skia/skia.gyp:skia', |
14 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 14 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
15 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
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', |
26 ], | 26 ], |
27 'conditions': [ | 27 'conditions': [ |
28 ['OS != "ios" and chrome_multiple_dll != 1', { | |
29 'dependencies': [ | |
30 '../webkit/glue/webkit_glue.gyp:glue', | |
31 ] | |
32 }], | |
33 ['android_webview_build == 0', { | 28 ['android_webview_build == 0', { |
34 'dependencies': [ | 29 'dependencies': [ |
35 '../sync/sync.gyp:sync', | 30 '../sync/sync.gyp:sync', |
36 ] | 31 ] |
37 }], | 32 }], |
38 ], | 33 ], |
39 }, | 34 }, |
40 { | 35 { |
41 'target_name': 'sessions_test_support', | 36 'target_name': 'sessions_test_support', |
42 'type': 'static_library', | 37 'type': 'static_library', |
(...skipping 12 matching lines...) Expand all Loading... |
55 'conditions': [ | 50 'conditions': [ |
56 ['android_webview_build == 0', { | 51 ['android_webview_build == 0', { |
57 'dependencies': [ | 52 'dependencies': [ |
58 '../sync/sync.gyp:sync', | 53 '../sync/sync.gyp:sync', |
59 ] | 54 ] |
60 }], | 55 }], |
61 ], | 56 ], |
62 }, | 57 }, |
63 ], | 58 ], |
64 } | 59 } |
OLD | NEW |