| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 ], | 26 ], |
| 27 'defines': [ | 27 'defines': [ |
| 28 'LIBGTK2UI_IMPLEMENTATION', | 28 'LIBGTK2UI_IMPLEMENTATION', |
| 29 ], | 29 ], |
| 30 # Several of our source files are named _gtk2.cc. This isn't to | 30 # Several of our source files are named _gtk2.cc. This isn't to |
| 31 # differentiate them from their source files (ninja and make are sane | 31 # differentiate them from their source files (ninja and make are sane |
| 32 # build systems, unlike MSVS). It is instead to get around the rest of | 32 # build systems, unlike MSVS). It is instead to get around the rest of |
| 33 # the normal, global gtk exclusion rules, as we are otherwise using gtk | 33 # the normal, global gtk exclusion rules, as we are otherwise using gtk |
| 34 # in a non-gtk build. | 34 # in a non-gtk build. |
| 35 'sources': [ | 35 'sources': [ |
| 36 'app_indicator_icon.cc', |
| 37 'app_indicator_icon.h', |
| 36 'chrome_gtk_frame.cc', | 38 'chrome_gtk_frame.cc', |
| 37 'chrome_gtk_frame.h', | 39 'chrome_gtk_frame.h', |
| 38 'gtk2_ui.cc', | 40 'gtk2_ui.cc', |
| 39 'gtk2_ui.h', | 41 'gtk2_ui.h', |
| 40 'gtk2_util.cc', | 42 'gtk2_util.cc', |
| 41 'gtk2_util.h', | 43 'gtk2_util.h', |
| 42 'libgtk2ui_export.h', | 44 'libgtk2ui_export.h', |
| 45 'menu_util.cc', |
| 46 'menu_util.h', |
| 43 'native_theme_gtk2.cc', | 47 'native_theme_gtk2.cc', |
| 44 'native_theme_gtk2.h', | 48 'native_theme_gtk2.h', |
| 45 'owned_widget_gtk2.cc', | 49 'owned_widget_gtk2.cc', |
| 46 'owned_widget_gtk2.h', | 50 'owned_widget_gtk2.h', |
| 47 'select_file_dialog_impl.cc', | 51 'select_file_dialog_impl.cc', |
| 48 'select_file_dialog_impl.h', | 52 'select_file_dialog_impl.h', |
| 49 'select_file_dialog_impl_gtk2.cc', | 53 'select_file_dialog_impl_gtk2.cc', |
| 50 'select_file_dialog_impl_kde.cc', | 54 'select_file_dialog_impl_kde.cc', |
| 51 'skia_utils_gtk2.cc', | 55 'skia_utils_gtk2.cc', |
| 52 'skia_utils_gtk2.h', | 56 'skia_utils_gtk2.h', |
| 53 'unity_service.cc', | 57 'unity_service.cc', |
| 54 'unity_service.h', | 58 'unity_service.h', |
| 55 ], | 59 ], |
| 56 }, | 60 }, |
| 57 ], | 61 ], |
| 58 } | 62 } |
| OLD | NEW |