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

Side by Side Diff: remoting/remoting.gyp

Issue 7491070: Switch over to using SkRegions to calculate dirty areas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clean up comments Created 9 years, 4 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'remoting_it2me_locale_files': [ 88 'remoting_it2me_locale_files': [
89 'webapp/me2mom/_locales/en/messages.json', 89 'webapp/me2mom/_locales/en/messages.json',
90 ], 90 ],
91 }, 91 },
92 92
93 'target_defaults': { 93 'target_defaults': {
94 'defines': [ 94 'defines': [
95 ], 95 ],
96 'include_dirs': [ 96 'include_dirs': [
97 '..', # Root of Chrome checkout 97 '..', # Root of Chrome checkout
98 '../skia/config',
99 '../third_party/skia/include/config',
Wez 2011/08/08 20:49:34 Do we need these if our targets have appropriate S
dmac 2011/08/10 20:30:36 Tightened up the includes properly.
98 ], 100 ],
99 }, 101 },
100 102
101 'conditions': [ 103 'conditions': [
102 ['os_posix == 1', { 104 ['os_posix == 1', {
103 'targets': [ 105 'targets': [
104 # Simple webserver for testing remoting client plugin. 106 # Simple webserver for testing remoting client plugin.
105 { 107 {
106 'target_name': 'remoting_client_test_webserver', 108 'target_name': 'remoting_client_test_webserver',
107 'type': 'executable', 109 'type': 'executable',
(...skipping 15 matching lines...) Expand all
123 'dependencies': [ 125 'dependencies': [
124 'remoting_base', 126 'remoting_base',
125 'remoting_client', 127 'remoting_client',
126 'remoting_jingle_glue', 128 'remoting_jingle_glue',
127 '../media/media.gyp:media', 129 '../media/media.gyp:media',
128 '../ppapi/ppapi.gyp:ppapi_cpp_objects', 130 '../ppapi/ppapi.gyp:ppapi_cpp_objects',
129 131
130 # TODO(sergeyu): This is a hack: plugin should not depend on 132 # TODO(sergeyu): This is a hack: plugin should not depend on
131 # webkit glue. Skia is needed here to add include path webkit glue 133 # webkit glue. Skia is needed here to add include path webkit glue
132 # depends on. See comments in chromoting_instance.cc for details. 134 # depends on. See comments in chromoting_instance.cc for details.
133 # crbug.com/74951 135 # crbug.com/74951
Wez 2011/08/08 20:49:34 Now that we have a real dependency on Skia, is thi
134 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 136 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
135 '<(DEPTH)/skia/skia.gyp:skia', 137 '<(DEPTH)/skia/skia.gyp:skia',
136 ], 138 ],
137 'sources': [ 139 'sources': [
138 'client/plugin/chromoting_instance.cc', 140 'client/plugin/chromoting_instance.cc',
139 'client/plugin/chromoting_instance.h', 141 'client/plugin/chromoting_instance.h',
140 'client/plugin/chromoting_scriptable_object.cc', 142 'client/plugin/chromoting_scriptable_object.cc',
141 'client/plugin/chromoting_scriptable_object.h', 143 'client/plugin/chromoting_scriptable_object.h',
142 'client/plugin/pepper_entrypoints.cc', 144 'client/plugin/pepper_entrypoints.cc',
143 'client/plugin/pepper_entrypoints.h', 145 'client/plugin/pepper_entrypoints.h',
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 '<@(remoting_it2me_os_files)', 264 '<@(remoting_it2me_os_files)',
263 '--locales', 265 '--locales',
264 '<@(remoting_it2me_locale_files)', 266 '<@(remoting_it2me_locale_files)',
265 ], 267 ],
266 }, 268 },
267 ], 269 ],
268 }, # end of target 'webapp_it2me' 270 }, # end of target 'webapp_it2me'
269 { 271 {
270 'target_name': 'remoting_base', 272 'target_name': 'remoting_base',
271 'type': 'static_library', 273 'type': 'static_library',
272 'dependencies': [ 274 'dependencies': [
Wez 2011/08/08 20:49:34 Doesn't base depend on skia now, since EncoderVp8
273 '../base/base.gyp:base', 275 '../base/base.gyp:base',
274 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 276 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
275 '../ui/ui.gyp:ui', 277 '../ui/ui.gyp:ui',
276 '../net/net.gyp:net', 278 '../net/net.gyp:net',
277 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 279 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
278 '../third_party/libvpx/libvpx.gyp:libvpx_include', 280 '../third_party/libvpx/libvpx.gyp:libvpx_include',
279 '../third_party/zlib/zlib.gyp:zlib', 281 '../third_party/zlib/zlib.gyp:zlib',
280 '../media/media.gyp:yuv_convert', 282 '../media/media.gyp:yuv_convert',
281 'remoting_jingle_glue', 283 'remoting_jingle_glue',
282 'proto/chromotocol.gyp:chromotocol_proto_lib', 284 'proto/chromotocol.gyp:chromotocol_proto_lib',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 'base/encoder_row_based.cc', 325 'base/encoder_row_based.cc',
324 'base/encoder_row_based.h', 326 'base/encoder_row_based.h',
325 'base/rate_counter.cc', 327 'base/rate_counter.cc',
326 'base/rate_counter.h', 328 'base/rate_counter.h',
327 'base/running_average.cc', 329 'base/running_average.cc',
328 'base/running_average.h', 330 'base/running_average.h',
329 'base/task_thread_proxy.cc', 331 'base/task_thread_proxy.cc',
330 'base/task_thread_proxy.h', 332 'base/task_thread_proxy.h',
331 'base/tracer.cc', 333 'base/tracer.cc',
332 'base/tracer.h', 334 'base/tracer.h',
333 'base/types.h',
334 'base/util.cc', 335 'base/util.cc',
335 'base/util.h', 336 'base/util.h',
336 ], 337 ],
337 'conditions': [ 338 'conditions': [
338 ['target_arch=="arm"', { 339 ['target_arch=="arm"', {
339 'sources!': [ 340 'sources!': [
340 'base/decoder_vp8.cc', 341 'base/decoder_vp8.cc',
341 'base/decoder_vp8.h', 342 'base/decoder_vp8.h',
342 'base/encoder_vp8.cc', 343 'base/encoder_vp8.cc',
343 'base/encoder_vp8.h', 344 'base/encoder_vp8.h',
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 ['target_arch=="arm"', { 816 ['target_arch=="arm"', {
816 'sources!': [ 817 'sources!': [
817 'base/decoder_vp8_unittest.cc', 818 'base/decoder_vp8_unittest.cc',
818 'base/encoder_vp8_unittest.cc', 819 'base/encoder_vp8_unittest.cc',
819 ], 820 ],
820 }], 821 }],
821 ], # end of 'conditions' 822 ], # end of 'conditions'
822 }, # end of target 'remoting_unittests' 823 }, # end of target 'remoting_unittests'
823 ], # end of targets 824 ], # end of targets
824 } 825 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698