OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 { | 64 { |
65 'target_name': 'chromoting_plugin', | 65 'target_name': 'chromoting_plugin', |
66 'type': 'static_library', | 66 'type': 'static_library', |
67 'defines': [ | 67 'defines': [ |
68 'HAVE_STDINT_H', # Required by on2_integer.h | 68 'HAVE_STDINT_H', # Required by on2_integer.h |
69 ], | 69 ], |
70 'dependencies': [ | 70 'dependencies': [ |
71 'chromoting_base', | 71 'chromoting_base', |
72 'chromoting_client', | 72 'chromoting_client', |
73 'chromoting_jingle_glue', | 73 'chromoting_jingle_glue', |
74 '../third_party/ppapi/ppapi.gyp:ppapi_c', | 74 '../third_party/ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 75 '../third_party/zlib/zlib.gyp:zlib', |
75 ], | 76 ], |
76 'sources': [ | 77 'sources': [ |
77 'client/plugin/chromoting_plugin.cc', | 78 'client/plugin/chromoting_plugin.cc', |
78 'client/plugin/chromoting_plugin.h', | 79 'client/plugin/chromoting_plugin.h', |
79 'client/plugin/pepper_entrypoints.cc', | 80 'client/plugin/pepper_entrypoints.cc', |
80 'client/plugin/pepper_entrypoints.h', | 81 'client/plugin/pepper_entrypoints.h', |
81 'client/plugin/pepper_view.cc', | 82 'client/plugin/pepper_view.cc', |
82 'client/plugin/pepper_view.h', | 83 'client/plugin/pepper_view.h', |
| 84 'client/plugin/pepper_util.cc', |
| 85 'client/plugin/pepper_util.h', |
83 '../media/base/yuv_convert.cc', | 86 '../media/base/yuv_convert.cc', |
84 '../media/base/yuv_convert.h', | 87 '../media/base/yuv_convert.h', |
85 '../media/base/yuv_row.h', | 88 '../media/base/yuv_row.h', |
86 '../media/base/yuv_row_table.cc', | 89 '../media/base/yuv_row_table.cc', |
87 ], | 90 ], |
88 'conditions': [ | 91 'conditions': [ |
89 ['OS=="win"', { | 92 ['OS=="win"', { |
90 'sources': [ | 93 'sources': [ |
91 '../media/base/yuv_row_win.cc', | 94 '../media/base/yuv_row_win.cc', |
92 ], | 95 ], |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 ], # end of 'conditions' | 377 ], # end of 'conditions' |
375 }, # end of target 'chromoting_unittests' | 378 }, # end of target 'chromoting_unittests' |
376 ], # end of targets | 379 ], # end of targets |
377 } | 380 } |
378 | 381 |
379 # Local Variables: | 382 # Local Variables: |
380 # tab-width:2 | 383 # tab-width:2 |
381 # indent-tabs-mode:nil | 384 # indent-tabs-mode:nil |
382 # End: | 385 # End: |
383 # vim: set expandtab tabstop=2 shiftwidth=2: | 386 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |