Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/trusted/simple_service/build.scons

Issue 891603002: Removes the name service from the service runtime (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 simple_service_inputs = [ 8 simple_service_inputs = [
9 'nacl_simple_ltd_service.c', 9 'nacl_simple_ltd_service.c',
10 'nacl_simple_rservice.c', 10 'nacl_simple_rservice.c',
11 'nacl_simple_service.c', 11 'nacl_simple_service.c',
12 ] 12 ]
13 13
14 env.DualLibrary('simple_service', simple_service_inputs) 14 env.DualLibrary('simple_service', simple_service_inputs)
15
16 # see tests/nameservice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698