diff options
author | brettw <brettw@chromium.org> | 2015-02-13 17:37:31 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-14 01:38:01 +0000 |
commit | f7eb6caac05a31363eefa30cad2d5aa2198d64ea (patch) | |
tree | 0cc1f0ed5a5e9253105ac25e98283033fdeddf64 /remoting | |
parent | 5d4a4c5f9e60cdf954f23fa9de5a669adda475ed (diff) | |
download | chromium_src-f7eb6caac05a31363eefa30cad2d5aa2198d64ea.zip chromium_src-f7eb6caac05a31363eefa30cad2d5aa2198d64ea.tar.gz chromium_src-f7eb6caac05a31363eefa30cad2d5aa2198d64ea.tar.bz2 |
Split apart the PPAPI GN targets
This puts BUILD files in the corresponding directories without duplicate names.
Adds a template for ppapi examples and writes the build for one example. I only did one at this point to test the infrastructure without making this patch too large.
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/921953002
Cr-Commit-Position: refs/heads/master@{#316352}
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/client/plugin/BUILD.gn | 4 | ||||
-rw-r--r-- | remoting/host/BUILD.gn | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/remoting/client/plugin/BUILD.gn b/remoting/client/plugin/BUILD.gn index 58a89df..2f45f62 100644 --- a/remoting/client/plugin/BUILD.gn +++ b/remoting/client/plugin/BUILD.gn @@ -24,8 +24,8 @@ static_library("plugin") { deps = [ "//net", - "//ppapi:ppapi_cpp_objects", - "//ppapi:ppapi_internal_module", + "//ppapi/cpp:objects", + "//ppapi/cpp/private:internal_module", "//remoting/base", "//remoting/client", "//remoting/protocol", diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn index bc4e4ac..42bf79e 100644 --- a/remoting/host/BUILD.gn +++ b/remoting/host/BUILD.gn @@ -55,7 +55,7 @@ static_library("host") { deps += [ "//cc", "//content", - "//ppapi:ppapi_host", + "//ppapi/host", "//skia", "//ui/aura", "//ui/compositor", |