Remove the RenderProcessHost observer and attach the WebContentsObserver earlier...
[chromium-blink-merge.git] / mojo / examples / sample_app / BUILD.gn
blobd44e6e4f865cf73349e91d931f6de0f111c05515
1 # Copyright 2014 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 # GYP version: mojo/mojo_examples.gypi:mojo_sample_app
6 shared_library("sample_app") {
7   output_name = "mojo_sample_app"
9   sources = [
10     "gles2_client_impl.cc",
11     "gles2_client_impl.h",
12     "sample_app.cc",
13   ]
15   deps = [
16     ":spinning_cube",
17     "//base",
18     "//gpu/command_buffer/client:gles2_interface",
19     "//mojo/public/c/system:for_shared_library",
20     "//mojo/public/cpp/application:standalone",
21     "//mojo/public/cpp/bindings",
22     "//mojo/public/cpp/utility",
23     "//mojo/public/gles2:for_shared_library",
24     "//mojo/services/public/interfaces/geometry",
25     "//mojo/services/public/interfaces/native_viewport",
26   ]
29 source_set("spinning_cube") {
30   sources = [
31     "spinning_cube.cc",
32     "spinning_cube.h"
33   ]
35   deps = [
36     "//base",
37     "//mojo/public/gles2:for_shared_library",
38   ]