OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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/toolbar | 8 # GN version: //components/toolbar |
9 'target_name': 'toolbar', | 9 'target_name': 'toolbar', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../net/net.gyp:net', |
| 14 '../ui/base/ui_base.gyp:ui_base', |
| 15 '../ui/gfx/gfx.gyp:gfx', |
13 '../url/url.gyp:url_lib', | 16 '../url/url.gyp:url_lib', |
| 17 'components_resources.gyp:components_resources', |
| 18 'components_strings.gyp:components_strings', |
| 19 'google_core_browser', |
| 20 'prefs/prefs.gyp:prefs', |
14 'security_state', | 21 'security_state', |
| 22 'url_formatter/url_formatter.gyp:url_formatter', |
15 ], | 23 ], |
16 'include_dirs': [ | 24 'include_dirs': [ |
17 '..', | 25 '..', |
18 ], | 26 ], |
19 'sources': [ | 27 'sources': [ |
20 # Note: sources list duplicated in GN build. | 28 # Note: sources list duplicated in GN build. |
21 'toolbar/toolbar_model.cc', | 29 'toolbar/toolbar_model.cc', |
22 'toolbar/toolbar_model.h', | 30 'toolbar/toolbar_model.h', |
| 31 'toolbar/toolbar_model_delegate.h', |
| 32 'toolbar/toolbar_model_impl.cc', |
| 33 'toolbar/toolbar_model_impl.h', |
23 ], | 34 ], |
24 }, | 35 }, |
25 { | 36 { |
26 # GN version: //components/toolbar:test_support | 37 # GN version: //components/toolbar:test_support |
27 'target_name': 'toolbar_test_support', | 38 'target_name': 'toolbar_test_support', |
28 'type': 'static_library', | 39 'type': 'static_library', |
29 'dependencies': [ | 40 'dependencies': [ |
30 '../base/base.gyp:base', | 41 '../base/base.gyp:base', |
31 '../ui/gfx/gfx.gyp:gfx_vector_icons', | 42 '../ui/gfx/gfx.gyp:gfx_vector_icons', |
32 'components_resources.gyp:components_resources', | 43 'components_resources.gyp:components_resources', |
(...skipping 10 matching lines...) Expand all Loading... |
43 ['toolkit_views==1', { | 54 ['toolkit_views==1', { |
44 # Needed to get the TOOLKIT_VIEWS define. | 55 # Needed to get the TOOLKIT_VIEWS define. |
45 'dependencies': [ | 56 'dependencies': [ |
46 '<(DEPTH)/ui/views/views.gyp:views', | 57 '<(DEPTH)/ui/views/views.gyp:views', |
47 ], | 58 ], |
48 }], | 59 }], |
49 ], | 60 ], |
50 }, | 61 }, |
51 ], | 62 ], |
52 } | 63 } |
OLD | NEW |