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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ppapi_example', | 8 'target_name': 'ppapi_example', |
9 'dependencies': [ | 9 'dependencies': [ |
10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 '_CRT_NONSTDC_NO_WARNINGS', | 87 '_CRT_NONSTDC_NO_WARNINGS', |
88 '_CRT_NONSTDC_NO_DEPRECATE', | 88 '_CRT_NONSTDC_NO_DEPRECATE', |
89 '_SCL_SECURE_NO_DEPRECATE', | 89 '_SCL_SECURE_NO_DEPRECATE', |
90 ], | 90 ], |
91 }], | 91 }], |
92 ['OS=="mac"', { | 92 ['OS=="mac"', { |
93 'mac_bundle': 1, | 93 'mac_bundle': 1, |
94 'product_name': 'ppapi_tests', | 94 'product_name': 'ppapi_tests', |
95 'product_extension': 'plugin', | 95 'product_extension': 'plugin', |
96 }], | 96 }], |
97 ['p2p_apis==1', { | |
98 'sources': [ | |
99 'tests/test_transport.cc', | |
100 'tests/test_transport.h', | |
101 ], | |
102 }], | |
103 ], | 97 ], |
104 # TODO(dmichael): Figure out what is wrong with the script on Windows and add | 98 # TODO(dmichael): Figure out what is wrong with the script on Windows and add |
105 # it as an automated action. | 99 # it as an automated action. |
106 # 'actions': [ | 100 # 'actions': [ |
107 # { | 101 # { |
108 # 'action_name': 'generate_ppapi_include_tests', | 102 # 'action_name': 'generate_ppapi_include_tests', |
109 # 'inputs': [], | 103 # 'inputs': [], |
110 # 'outputs': [ | 104 # 'outputs': [ |
111 # 'tests/test_c_includes.c', | 105 # 'tests/test_c_includes.c', |
112 # 'tests/test_cc_includes.cc', | 106 # 'tests/test_cc_includes.cc', |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 'dependencies': [ | 430 'dependencies': [ |
437 'ppapi_example_skeleton', | 431 'ppapi_example_skeleton', |
438 'ppapi.gyp:ppapi_cpp', | 432 'ppapi.gyp:ppapi_cpp', |
439 ], | 433 ], |
440 'sources': [ | 434 'sources': [ |
441 'examples/printing/printing.cc', | 435 'examples/printing/printing.cc', |
442 ], | 436 ], |
443 }, | 437 }, |
444 ], | 438 ], |
445 } | 439 } |
OLD | NEW |