| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ['include', '/win_[^/]*\\.cc$'], | 35 ['include', '/win_[^/]*\\.cc$'], |
| 36 ]}], | 36 ]}], |
| 37 ], | 37 ], |
| 38 }, | 38 }, |
| 39 'targets': [ | 39 'targets': [ |
| 40 { | 40 { |
| 41 'target_name': 'views', | 41 'target_name': 'views', |
| 42 'type': '<(library)', | 42 'type': '<(library)', |
| 43 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751', | 43 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751', |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 '../app/app.gyp:app_base', | 45 '../app/app.gyp:app_base', |
| 46 '../app/app.gyp:app_strings', | 46 '../app/app.gyp:app_strings', |
| 47 '../app/app.gyp:app_resources', | 47 '../app/app.gyp:app_resources', |
| 48 '../skia/skia.gyp:skia', | 48 '../skia/skia.gyp:skia', |
| 49 '../third_party/icu38/icu38.gyp:icui18n', | 49 '../third_party/icu38/icu38.gyp:icui18n', |
| 50 '../third_party/icu38/icu38.gyp:icuuc', | 50 '../third_party/icu38/icu38.gyp:icuuc', |
| 51 ], | 51 ], |
| 52 'sources': [ | 52 'sources': [ |
| 53 # All .cc, .h under views, except unittests | 53 # All .cc, .h under views, except unittests |
| 54 'accelerator.cc', | 54 'accelerator.cc', |
| 55 'accelerator.h', | 55 'accelerator.h', |
| 56 'accessibility/accessibility_types.h', | 56 'accessibility/accessibility_types.h', |
| 57 'accessibility/view_accessibility.cc', | 57 'accessibility/view_accessibility.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'drag_utils_gtk.cc', | 167 'drag_utils_gtk.cc', |
| 168 'drag_utils_win.cc', | 168 'drag_utils_win.cc', |
| 169 'event.cc', | 169 'event.cc', |
| 170 'event.h', | 170 'event.h', |
| 171 'event_gtk.cc', | 171 'event_gtk.cc', |
| 172 'event_win.cc', | 172 'event_win.cc', |
| 173 'fill_layout.cc', | 173 'fill_layout.cc', |
| 174 'fill_layout.h', | 174 'fill_layout.h', |
| 175 'focus/external_focus_tracker.cc', | 175 'focus/external_focus_tracker.cc', |
| 176 'focus/external_focus_tracker.h', | 176 'focus/external_focus_tracker.h', |
| 177 'focus/focus_manager_gtk.cc', | |
| 178 'focus/focus_manager_win.cc', | |
| 179 'focus/focus_manager.cc', | 177 'focus/focus_manager.cc', |
| 180 'focus/focus_manager.h', | 178 'focus/focus_manager.h', |
| 181 'focus/focus_util_win.cc', | 179 'focus/focus_util_win.cc', |
| 182 'focus/focus_util_win.h', | 180 'focus/focus_util_win.h', |
| 183 'focus/view_storage.cc', | 181 'focus/view_storage.cc', |
| 184 'focus/view_storage.h', | 182 'focus/view_storage.h', |
| 185 'grid_layout.cc', | 183 'grid_layout.cc', |
| 186 'grid_layout.h', | 184 'grid_layout.h', |
| 187 'layout_manager.cc', | 185 'layout_manager.cc', |
| 188 'layout_manager.h', | 186 'layout_manager.h', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 ], | 292 ], |
| 295 'include_dirs': [ | 293 'include_dirs': [ |
| 296 # TODO(beng): move wtl to src/third_party | 294 # TODO(beng): move wtl to src/third_party |
| 297 '../chrome/third_party/wtl/include', | 295 '../chrome/third_party/wtl/include', |
| 298 ], | 296 ], |
| 299 }], | 297 }], |
| 300 ], | 298 ], |
| 301 }, | 299 }, |
| 302 ], | 300 ], |
| 303 } | 301 } |
| OLD | NEW |