Chromium Code Reviews| Index: ppapi/native_client/src/untrusted/irt_stub/BUILD.gn |
| diff --git a/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn b/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c467eb08e771f1ce4c312c5986eebca0aae0779e |
| --- /dev/null |
| +++ b/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn |
| @@ -0,0 +1,17 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//build/config/features.gni") |
|
Nick Bray (chromium)
2015/02/07 02:37:46
Not needed
Dirk Pranke
2015/02/07 02:48:03
Done.
|
| + |
| +assert(is_nacl, |
| + "These targets must only be built using the untrusted NaCl toolchains.") |
| + |
| +static_library("ppapi_stub_lib") { |
| + sources = [ |
| + "ppapi_plugin_main.c", |
| + "ppapi_plugin_start.c", |
| + "plugin_main_irt.c", |
| + "thread_creator.c", |
| + ] |
| +} |