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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 1480303002: Implement a basic PPAPI plugin for Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android after https://codereview.chromium.org/1478633002 Created 5 years 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
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/tests/blink_test_plugin.cc » ('j') | 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //ppapi:ppapi_tests 8 # GN version: //ppapi:ppapi_tests
9 'target_name': 'ppapi_tests', 9 'target_name': 'ppapi_tests',
10 'type': 'loadable_module', 10 'type': 'loadable_module',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 ], 94 ],
95 'conditions': [ 95 'conditions': [
96 ['OS=="mac"', { 96 ['OS=="mac"', {
97 'mac_bundle': 1, 97 'mac_bundle': 1,
98 'product_name': 'power_saver_test_plugin', 98 'product_name': 'power_saver_test_plugin',
99 'product_extension': 'plugin', 99 'product_extension': 'plugin',
100 }], 100 }],
101 ], 101 ],
102 }, 102 },
103 { 103 {
104 # GN version: //ppapi:blink_test_plugin
105 'target_name': 'blink_test_plugin',
106 'type': 'loadable_module',
107 'sources': [
108 'tests/blink_test_plugin.cc',
109 ],
110 'dependencies': [
111 'ppapi.gyp:ppapi_cpp',
112 'ppapi_internal.gyp:ppapi_shared',
113 ],
114 'conditions': [
115 ['OS=="mac"', {
116 'mac_bundle': 1,
117 'product_name': 'blink_test_plugin',
118 'product_extension': 'plugin',
119 }],
120 ],
121 },
122 {
104 # GN version: //ppapi/proxy:test_support 123 # GN version: //ppapi/proxy:test_support
105 # //ppapi/shared_impl:test_support 124 # //ppapi/shared_impl:test_support
106 'target_name': 'ppapi_unittest_shared', 125 'target_name': 'ppapi_unittest_shared',
107 'type': 'static_library', 126 'type': 'static_library',
108 'dependencies': [ 127 'dependencies': [
109 'ppapi_proxy', 128 'ppapi_proxy',
110 'ppapi_shared', 129 'ppapi_shared',
111 '../base/base.gyp:test_support_base', 130 '../base/base.gyp:test_support_base',
112 '../ipc/ipc.gyp:ipc', 131 '../ipc/ipc.gyp:ipc',
113 '../ipc/ipc.gyp:test_support_ipc', 132 '../ipc/ipc.gyp:test_support_ipc',
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'sources': [ 666 'sources': [
648 'examples/compositor/compositor.cc', 667 'examples/compositor/compositor.cc',
649 'examples/compositor/spinning_cube.cc', 668 'examples/compositor/spinning_cube.cc',
650 'examples/compositor/spinning_cube.h', 669 'examples/compositor/spinning_cube.h',
651 ], 670 ],
652 }, 671 },
653 # Adding a new PPAPI example? Don't forget to update the GN build. 672 # Adding a new PPAPI example? Don't forget to update the GN build.
654 # See //ppapi/examples/BUILD.gn 673 # See //ppapi/examples/BUILD.gn
655 ], 674 ],
656 } 675 }
OLDNEW
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/tests/blink_test_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698