Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: ui/surface/surface.gyp

Issue 11464017: Separate image processing logic from presentation logic. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary dep. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/surface/d3d9_utils_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 '--shader_compiler_tool', '<(fxc)', 42 '--shader_compiler_tool', '<(fxc)',
43 '--output_h_file', '<(h_file)', 43 '--output_h_file', '<(h_file)',
44 '--output_cc_file', '<(cc_file)', 44 '--output_cc_file', '<(cc_file)',
45 '--input_hlsl_file', '<(RULE_INPUT_PATH)', 45 '--input_hlsl_file', '<(RULE_INPUT_PATH)',
46 ], 46 ],
47 'msvs_cygwin_shell': 0, 47 'msvs_cygwin_shell': 0,
48 'message': 'Generating shaders from <(RULE_INPUT_PATH)', 48 'message': 'Generating shaders from <(RULE_INPUT_PATH)',
49 'process_outputs_as_sources': 1, 49 'process_outputs_as_sources': 1,
50 }, 50 },
51 ], 51 ],
52 'targets': [
53 {
54 'target_name': 'surface_gpu_tests',
55 'type': '<(gtest_target_type)',
56 'dependencies': [
57 '<(DEPTH)/base/base.gyp:base',
58 '<(DEPTH)/base/base.gyp:run_all_unittests',
59 '<(DEPTH)/skia/skia.gyp:skia',
60 '<(DEPTH)/testing/gtest.gyp:gtest',
61 '<(DEPTH)/ui/gl/gl.gyp:gl',
apatrick_chromium 2013/01/04 20:33:01 I can't find the dependencies on skia or gl?
ncarter (slow) 2013/01/04 20:56:27 Fixed. I actually botched this change right before
62 '<(DEPTH)/ui/ui.gyp:ui',
63 'surface',
64 ],
65 'sources': [
66 'accelerated_surface_transformer_win_unittest.cc',
67 ],
68 },
69 ],
52 }], 70 }],
53 ], 71 ],
54 }, 72 },
55 'targets': [ 73 'targets': [
56 { 74 {
57 'target_name': 'surface', 75 'target_name': 'surface',
58 'type': '<(component)', 76 'type': '<(component)',
59 'dependencies': [ 77 'dependencies': [
60 '<(DEPTH)/base/base.gyp:base', 78 '<(DEPTH)/base/base.gyp:base',
61 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 79 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
62 '<(DEPTH)/skia/skia.gyp:skia', 80 '<(DEPTH)/skia/skia.gyp:skia',
63 '<(DEPTH)/ui/gl/gl.gyp:gl', 81 '<(DEPTH)/ui/gl/gl.gyp:gl',
64 '<(DEPTH)/ui/ui.gyp:ui', 82 '<(DEPTH)/ui/ui.gyp:ui',
65 ], 83 ],
66 'sources': [ 84 'sources': [
67 'accelerated_surface_mac.cc', 85 'accelerated_surface_mac.cc',
68 'accelerated_surface_mac.h', 86 'accelerated_surface_mac.h',
87 'accelerated_surface_transformer_win.cc',
88 'accelerated_surface_transformer_win.h',
89 'accelerated_surface_transformer_win.hlsl',
69 'accelerated_surface_win.cc', 90 'accelerated_surface_win.cc',
70 'accelerated_surface_win.h', 91 'accelerated_surface_win.h',
71 'accelerated_surface_win.hlsl', 92 'd3d9_utils_win.cc',
93 'd3d9_utils_win.h',
72 'io_surface_support_mac.cc', 94 'io_surface_support_mac.cc',
73 'io_surface_support_mac.h', 95 'io_surface_support_mac.h',
74 'surface_export.h', 96 'surface_export.h',
75 'transport_dib.h', 97 'transport_dib.h',
76 'transport_dib_android.cc', 98 'transport_dib_android.cc',
77 'transport_dib_linux.cc', 99 'transport_dib_linux.cc',
78 'transport_dib_mac.cc', 100 'transport_dib_mac.cc',
79 'transport_dib_win.cc', 101 'transport_dib_win.cc',
80 ], 102 ],
81 'defines': [ 103 'defines': [
82 'SURFACE_IMPLEMENTATION', 104 'SURFACE_IMPLEMENTATION',
83 ], 105 ],
84 }, 106 },
85 ], 107 ],
86 } 108 }
OLDNEW
« no previous file with comments | « ui/surface/d3d9_utils_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698