Chromium Code Reviews| Index: components/sync_sessions.gypi |
| diff --git a/components/sync_sessions.gypi b/components/sync_sessions.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..42caa26460acf094e56852b7093ab38694275ebf |
| --- /dev/null |
| +++ b/components/sync_sessions.gypi |
| @@ -0,0 +1,56 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + # GN version: //components/sync_sessions |
| + 'target_name': 'sync_sessions', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + '../sync/sync.gyp:sync', |
| + 'sync_driver', |
| + ], |
| + 'sources': [ |
| + # Note: sources list duplicated in GN build. |
| + 'sync_sessions/revisit/current_tab_matcher.cc', |
| + 'sync_sessions/revisit/current_tab_matcher.h', |
| + 'sync_sessions/revisit/offset_tab_matcher.cc', |
| + 'sync_sessions/revisit/offset_tab_matcher.h', |
| + 'sync_sessions/revisit/page_equality.h', |
| + 'sync_sessions/revisit/page_visit_observer.h', |
| + 'sync_sessions/revisit/sessions_page_revisit_observer.cc', |
| + 'sync_sessions/revisit/sessions_page_revisit_observer.h', |
| + ], |
| + 'conditions': [ |
| + ['OS!="ios"', { |
| + 'dependencies': [ |
| + 'sessions_content', |
| + ], |
| + }, { # OS==ios |
| + 'dependencies': [ |
| + 'sessions_ios', |
| + ], |
| + }], |
| + ], |
| + }, |
| + { |
| + # GN version: //components/sync_sessions:test_support |
| + '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
|
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + 'sync_sessions', |
| + ], |
| + 'sources': [ |
| + ], |
| + }, |
| + ], |
| +} |