OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
brettw
2015/02/05 00:20:36
2015
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/features.gni") | |
6 | |
7 if (enable_nacl && enable_nacl_untrusted) { | |
Nick Bray (chromium)
2015/02/05 23:21:46
Nit: technically not needed? If we're including _
Dirk Pranke
2015/02/05 23:52:19
This is probably better changed to an assert() the
Nick Bray (chromium)
2015/02/06 01:18:00
asserting is_nacl would be the cleanest approach,
| |
8 static_library("ppapi_stub_lib") { | |
9 sources = [ | |
10 "ppapi_plugin_main.c", | |
11 "ppapi_plugin_start.c", | |
12 "plugin_main_irt.c", | |
13 "thread_creator.c", | |
14 ] | |
15 } | |
16 } | |
OLD | NEW |