| 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 | 9 |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 { | 56 { |
| 57 'target_name': 'surface', | 57 'target_name': 'surface', |
| 58 'type': '<(component)', | 58 'type': '<(component)', |
| 59 'dependencies': [ | 59 'dependencies': [ |
| 60 '<(DEPTH)/base/base.gyp:base', | 60 '<(DEPTH)/base/base.gyp:base', |
| 61 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 61 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 62 '<(DEPTH)/media/media.gyp:media', | 62 '<(DEPTH)/media/media.gyp:media', |
| 63 '<(DEPTH)/skia/skia.gyp:skia', | 63 '<(DEPTH)/skia/skia.gyp:skia', |
| 64 '<(DEPTH)/ui/events/events.gyp:events_base', | 64 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 65 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 65 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 66 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 66 '<(DEPTH)/ui/gl/gl.gyp:gl', | 67 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 67 '<(DEPTH)/ui/ui.gyp:ui', | 68 '<(DEPTH)/ui/ui.gyp:ui', |
| 68 ], | 69 ], |
| 69 'sources': [ | 70 'sources': [ |
| 70 'accelerated_surface_mac.cc', | 71 'accelerated_surface_mac.cc', |
| 71 'accelerated_surface_mac.h', | 72 'accelerated_surface_mac.h', |
| 72 'accelerated_surface_transformer_win.cc', | 73 'accelerated_surface_transformer_win.cc', |
| 73 'accelerated_surface_transformer_win.h', | 74 'accelerated_surface_transformer_win.h', |
| 74 'accelerated_surface_transformer_win.hlsl', | 75 'accelerated_surface_transformer_win.hlsl', |
| 75 'accelerated_surface_win.cc', | 76 'accelerated_surface_win.cc', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 'target_name': 'surface_gpu_tests', | 98 'target_name': 'surface_gpu_tests', |
| 98 'type': '<(gtest_target_type)', | 99 'type': '<(gtest_target_type)', |
| 99 'dependencies': [ | 100 'dependencies': [ |
| 100 '<(DEPTH)/base/base.gyp:base', | 101 '<(DEPTH)/base/base.gyp:base', |
| 101 '<(DEPTH)/base/base.gyp:run_all_unittests', | 102 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 102 '<(DEPTH)/media/media.gyp:media', | 103 '<(DEPTH)/media/media.gyp:media', |
| 103 '<(DEPTH)/skia/skia.gyp:skia', | 104 '<(DEPTH)/skia/skia.gyp:skia', |
| 104 '<(DEPTH)/testing/gtest.gyp:gtest', | 105 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 105 '<(DEPTH)/ui/events/events.gyp:events_base', | 106 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 106 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 107 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 108 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 107 '<(DEPTH)/ui/ui.gyp:ui', | 109 '<(DEPTH)/ui/ui.gyp:ui', |
| 108 'surface', | 110 'surface', |
| 109 ], | 111 ], |
| 110 'sources': [ | 112 'sources': [ |
| 111 'accelerated_surface_transformer_win_unittest.cc', | 113 'accelerated_surface_transformer_win_unittest.cc', |
| 112 ], | 114 ], |
| 113 }, | 115 }, |
| 114 ], | 116 ], |
| 115 }], | 117 }], |
| 116 ], | 118 ], |
| 117 } | 119 } |
| OLD | NEW |