Allow only one bookmark to be added for multiple fast starring
[chromium-blink-merge.git] / ppapi / examples / stub / BUILD.gn
blob9d2a452d1458c804401dedeecb5a0d227743445b
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//ppapi/examples/ppapi_example.gni")
7 group("stub") {
8   testonly = true
9   deps = [
10     ":c_stub",
11     ":cc_stub",
12   ]
15 ppapi_example("c_stub") {
16   output_name = "ppapi_example_c_stub"
17   sources = [
18     "stub.c",
19   ]
20   deps = [
21     "//ppapi/c",
22   ]
25 ppapi_example("cc_stub") {
26   output_name = "ppapi_example_cc_stub"
27   sources = [
28     "stub.cc",
29   ]
30   deps = [
31     "//ppapi/cpp",
32   ]