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 # GN version: //components/sessions | 8 # GN version: //components/sessions |
9 'target_name': 'sessions', | 9 'target_name': 'sessions', |
10 'type': '<(component)', | 10 'type': '<(component)', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
13 '../content/content.gyp:content_browser', | 13 '../content/content.gyp:content_browser', |
14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 16 '../ui/base/ui_base.gyp:ui_base', |
16 '../url/url.gyp:url_lib', | 17 '../url/url.gyp:url_lib', |
17 ], | 18 ], |
18 'include_dirs': [ | 19 'include_dirs': [ |
19 '..', | 20 '..', |
20 ], | 21 ], |
21 'defines': [ | 22 'defines': [ |
22 'SESSIONS_IMPLEMENTATION', | 23 'SESSIONS_IMPLEMENTATION', |
23 ], | 24 ], |
24 'sources': [ | 25 'sources': [ |
25 # Note: sources list duplicated in GN build. | 26 # Note: sources list duplicated in GN build. |
(...skipping 30 matching lines...) Expand all Loading... |
56 'conditions': [ | 57 'conditions': [ |
57 ['android_webview_build == 0', { | 58 ['android_webview_build == 0', { |
58 'dependencies': [ | 59 'dependencies': [ |
59 '../sync/sync.gyp:sync', | 60 '../sync/sync.gyp:sync', |
60 ] | 61 ] |
61 }], | 62 }], |
62 ], | 63 ], |
63 }, | 64 }, |
64 ], | 65 ], |
65 } | 66 } |
OLD | NEW |