| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 }, | 54 }, |
| 55 'targets': [ | 55 'targets': [ |
| 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', |
| 64 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 65 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 65 '<(DEPTH)/ui/gl/gl.gyp:gl', | 66 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 66 '<(DEPTH)/ui/ui.gyp:ui', | 67 '<(DEPTH)/ui/ui.gyp:ui', |
| 67 ], | 68 ], |
| 68 'sources': [ | 69 'sources': [ |
| 69 'accelerated_surface_mac.cc', | 70 'accelerated_surface_mac.cc', |
| 70 'accelerated_surface_mac.h', | 71 'accelerated_surface_mac.h', |
| 71 'accelerated_surface_transformer_win.cc', | 72 'accelerated_surface_transformer_win.cc', |
| 72 'accelerated_surface_transformer_win.h', | 73 'accelerated_surface_transformer_win.h', |
| 73 'accelerated_surface_transformer_win.hlsl', | 74 'accelerated_surface_transformer_win.hlsl', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 94 'targets': [ | 95 'targets': [ |
| 95 { | 96 { |
| 96 'target_name': 'surface_gpu_tests', | 97 'target_name': 'surface_gpu_tests', |
| 97 'type': '<(gtest_target_type)', | 98 'type': '<(gtest_target_type)', |
| 98 'dependencies': [ | 99 'dependencies': [ |
| 99 '<(DEPTH)/base/base.gyp:base', | 100 '<(DEPTH)/base/base.gyp:base', |
| 100 '<(DEPTH)/base/base.gyp:run_all_unittests', | 101 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 101 '<(DEPTH)/media/media.gyp:media', | 102 '<(DEPTH)/media/media.gyp:media', |
| 102 '<(DEPTH)/skia/skia.gyp:skia', | 103 '<(DEPTH)/skia/skia.gyp:skia', |
| 103 '<(DEPTH)/testing/gtest.gyp:gtest', | 104 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 105 '<(DEPTH)/ui/events/events.gyp:events', |
| 104 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 106 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 105 '<(DEPTH)/ui/ui.gyp:ui', | 107 '<(DEPTH)/ui/ui.gyp:ui', |
| 106 'surface', | 108 'surface', |
| 107 ], | 109 ], |
| 108 'sources': [ | 110 'sources': [ |
| 109 'accelerated_surface_transformer_win_unittest.cc', | 111 'accelerated_surface_transformer_win_unittest.cc', |
| 110 ], | 112 ], |
| 111 }, | 113 }, |
| 112 ], | 114 ], |
| 113 }], | 115 }], |
| 114 ], | 116 ], |
| 115 } | 117 } |
| OLD | NEW |