OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 'targets': [ | |
7 { | |
8 # GN version: //components/sync_sessions | |
9 'target_name': 'sync_sessions', | |
10 'type': 'static_library', | |
11 'include_dirs': [ | |
12 '..', | |
13 ], | |
14 'dependencies': [ | |
15 '../base/base.gyp:base', | |
16 '../sync/sync.gyp:sync', | |
17 'sync_driver', | |
18 ], | |
19 'sources': [ | |
20 # Note: sources list duplicated in GN build. | |
21 'sync_sessions/revisit/current_tab_matcher.cc', | |
22 'sync_sessions/revisit/current_tab_matcher.h', | |
23 'sync_sessions/revisit/offset_tab_matcher.cc', | |
24 'sync_sessions/revisit/offset_tab_matcher.h', | |
25 'sync_sessions/revisit/page_equality.h', | |
26 'sync_sessions/revisit/page_visit_observer.h', | |
27 'sync_sessions/revisit/sessions_page_revisit_observer.cc', | |
28 'sync_sessions/revisit/sessions_page_revisit_observer.h', | |
29 ], | |
30 'conditions': [ | |
31 ['OS!="ios"', { | |
32 'dependencies': [ | |
33 'sessions_content', | |
34 ], | |
35 }, { # OS==ios | |
36 'dependencies': [ | |
37 'sessions_ios', | |
38 ], | |
39 }], | |
40 ], | |
41 }, | |
42 { | |
43 # GN version: //components/sync_sessions:test_support | |
44 'target_name': 'sync_sessions_test_support', | |
blundell
2015/10/09 08:55:06
?
skym
2015/10/09 15:16:35
I figured it would be easier to add the test suppo
skym
2015/10/09 17:11:11
It seems the win8_chromium_ng build is failing fro
skym
2015/10/09 17:37:53
Err, bizarre, changing static_library to source_se
| |
45 'type': 'static_library', | |
46 'include_dirs': [ | |
47 '..', | |
48 ], | |
49 'dependencies': [ | |
50 'sync_sessions', | |
51 ], | |
52 'sources': [ | |
53 ], | |
54 }, | |
55 ], | |
56 } | |
OLD | NEW |