| 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 25 matching lines...) Expand all Loading... |
| 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 '../skia/skia.gyp:skia', | 47 '../skia/skia.gyp:skia', |
| 47 '../third_party/icu38/icu38.gyp:icui18n', | 48 '../third_party/icu38/icu38.gyp:icui18n', |
| 48 '../third_party/icu38/icu38.gyp:icuuc', | 49 '../third_party/icu38/icu38.gyp:icuuc', |
| 49 ], | 50 ], |
| 50 'sources': [ | 51 'sources': [ |
| 51 # All .cc, .h under views, except unittests | 52 # All .cc, .h under views, except unittests |
| 52 'accelerator.cc', | 53 'accelerator.cc', |
| 53 'accelerator.h', | 54 'accelerator.h', |
| 54 'accessibility/accessibility_types.h', | 55 'accessibility/accessibility_types.h', |
| 55 'accessibility/view_accessibility.cc', | 56 'accessibility/view_accessibility.cc', |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 # The legacy vcproj we rely on places the grit output in this | 283 # The legacy vcproj we rely on places the grit output in this |
| 283 # directory, so we need to explicitly add it to our include path. | 284 # directory, so we need to explicitly add it to our include path. |
| 284 'include_dirs': [ | 285 'include_dirs': [ |
| 285 '<(PRODUCT_DIR)/grit_derived_sources', | 286 '<(PRODUCT_DIR)/grit_derived_sources', |
| 286 ], | 287 ], |
| 287 }], | 288 }], |
| 288 ], | 289 ], |
| 289 }, | 290 }, |
| 290 ], | 291 ], |
| 291 } | 292 } |
| OLD | NEW |