| 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', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'toolbar/toolbar_model_delegate.h', | 32 'toolbar/toolbar_model_delegate.h', |
| 33 'toolbar/toolbar_model_impl.cc', | 33 'toolbar/toolbar_model_impl.cc', |
| 34 'toolbar/toolbar_model_impl.h', | 34 'toolbar/toolbar_model_impl.h', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 # GN version: //components/toolbar:test_support | 38 # GN version: //components/toolbar:test_support |
| 39 'target_name': 'toolbar_test_support', | 39 'target_name': 'toolbar_test_support', |
| 40 'type': 'static_library', | 40 'type': 'static_library', |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 '../ui/gfx/gfx.gyp:gfx_vector_icons', |
| 42 'components_resources.gyp:components_resources', | 43 'components_resources.gyp:components_resources', |
| 43 'toolbar', | 44 'toolbar', |
| 44 ], | 45 ], |
| 45 'include_dirs': [ | 46 'include_dirs': [ |
| 46 '..', | 47 '..', |
| 47 ], | 48 ], |
| 48 'sources': [ | 49 'sources': [ |
| 49 'toolbar/test_toolbar_model.cc', | 50 'toolbar/test_toolbar_model.cc', |
| 50 'toolbar/test_toolbar_model.h', | 51 'toolbar/test_toolbar_model.h', |
| 51 ], | 52 ], |
| 52 'conditions': [ | 53 'conditions': [ |
| 53 ['toolkit_views==1', { | 54 ['toolkit_views==1', { |
| 54 # Needed to get the TOOLKIT_VIEWS define. | 55 # Needed to get the TOOLKIT_VIEWS define. |
| 55 'dependencies': [ | 56 'dependencies': [ |
| 56 '<(DEPTH)/ui/views/views.gyp:views', | 57 '<(DEPTH)/ui/views/views.gyp:views', |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ], | 60 ], |
| 60 }, | 61 }, |
| 61 ], | 62 ], |
| 62 } | 63 } |
| OLD | NEW |