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

Side by Side Diff: src/common/SConstruct

Issue 460001: Clean up to move NewStringCopy from util to chromoes/string. (Closed)
Patch Set: Removed pw file, changed include format Created 11 years 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
« no previous file with comments | « .gitignore ('k') | src/common/chromeos/string.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 import sys 6 import sys
7 7
8 SOURCES=['chromeos/dbus/dbus.cc', 8 SOURCES=['chromeos/dbus/dbus.cc',
9 'chromeos/string.cc', 9 'chromeos/string.cc']
10 'util.cc']
11 10
12 env = Environment( 11 env = Environment(
13 CPPPATH=[ '.', '../third_party/chrome/files' ], 12 CPPPATH=[ '.', '../third_party/chrome/files' ],
14 CCFLAGS=['-m32', '-fno-exceptions'], 13 CCFLAGS=['-m32', '-fno-exceptions'],
15 LINKFLAGS=['-m32' ] 14 LINKFLAGS=['-m32' ]
16 ) 15 )
17 16
18 # glib and dbug environment 17 # glib and dbug environment
19 env.ParseConfig('pkg-config --cflags --libs dbus-1 glib-2.0 dbus-glib-1') 18 env.ParseConfig('pkg-config --cflags --libs dbus-1 glib-2.0 dbus-glib-1')
20 env.StaticLibrary('chromeos', SOURCES) 19 env.StaticLibrary('chromeos', SOURCES)
(...skipping 13 matching lines...) Expand all
34 ) 33 )
35 34
36 unittest_sources =['chromeos/glib/object_unittest.cc'] 35 unittest_sources =['chromeos/glib/object_unittest.cc']
37 unittest_main = ['testrunner.cc'] 36 unittest_main = ['testrunner.cc']
38 unittest_cmd = env_test.Program('unittests', 37 unittest_cmd = env_test.Program('unittests',
39 unittest_sources + unittest_main) 38 unittest_sources + unittest_main)
40 39
41 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + 40 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') +
42 Split('html app.info')) 41 Split('html app.info'))
43 42
OLDNEW
« no previous file with comments | « .gitignore ('k') | src/common/chromeos/string.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698