| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 { |
| 11 'target_name': 'v2', | 11 'target_name': 'v2', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
| 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 17 '../../cc/cc.gyp:cc', | 17 '../../cc/cc.gyp:cc', |
| 18 '../../gpu/gpu.gyp:gpu', | 18 '../../gpu/gpu.gyp:gpu', |
| 19 '../../skia/skia.gyp:skia', | 19 '../../skia/skia.gyp:skia', |
| 20 '../compositor/compositor.gyp:compositor', | 20 '../compositor/compositor.gyp:compositor', |
| 21 '../events/events.gyp:events', | 21 '../events/events.gyp:events', |
| 22 '../gfx/gfx.gyp:gfx', | 22 '../gfx/gfx.gyp:gfx', |
| 23 '../gfx/gfx.gyp:gfx_geometry', |
| 23 ], | 24 ], |
| 24 'defines': [ | 25 'defines': [ |
| 25 'V2_IMPLEMENTATION', | 26 'V2_IMPLEMENTATION', |
| 26 ], | 27 ], |
| 27 'sources': [ | 28 'sources': [ |
| 28 'public/event.h', | 29 'public/event.h', |
| 29 'public/event_dispatcher.h', | 30 'public/event_dispatcher.h', |
| 30 'public/event_handler.h', | 31 'public/event_handler.h', |
| 31 'public/event_target.h', | 32 'public/event_target.h', |
| 32 'public/layout.h', | 33 'public/layout.h', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 48 ], | 49 ], |
| 49 }, | 50 }, |
| 50 { | 51 { |
| 51 'target_name': 'v2_unittests', | 52 'target_name': 'v2_unittests', |
| 52 'type': 'executable', | 53 'type': 'executable', |
| 53 'dependencies': [ | 54 'dependencies': [ |
| 54 '../../base/base.gyp:test_support_base', | 55 '../../base/base.gyp:test_support_base', |
| 55 '../../skia/skia.gyp:skia', | 56 '../../skia/skia.gyp:skia', |
| 56 '../../testing/gtest.gyp:gtest', | 57 '../../testing/gtest.gyp:gtest', |
| 57 '../gfx/gfx.gyp:gfx', | 58 '../gfx/gfx.gyp:gfx', |
| 59 '../gfx/gfx.gyp:gfx_geometry', |
| 58 'v2', | 60 'v2', |
| 59 ], | 61 ], |
| 60 'sources': [ | 62 'sources': [ |
| 61 'src/v2_unittests.cc', | 63 'src/v2_unittests.cc', |
| 62 'src/view_unittest.cc', | 64 'src/view_unittest.cc', |
| 63 ], | 65 ], |
| 64 }, | 66 }, |
| 65 ], | 67 ], |
| 66 } | 68 } |
| OLD | NEW |