diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-26 22:53:13 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-26 22:53:13 +0000 |
commit | 1968d9778f74daa4056ddc5a18aeac5061d0314b (patch) | |
tree | 617c16cdb81229734e92aa908bbbd7a4923088be /base/base.gypi | |
parent | a24417742faf535b1a616984b03dcf8258b9f818 (diff) | |
download | chromium_src-1968d9778f74daa4056ddc5a18aeac5061d0314b.zip chromium_src-1968d9778f74daa4056ddc5a18aeac5061d0314b.tar.gz chromium_src-1968d9778f74daa4056ddc5a18aeac5061d0314b.tar.bz2 |
Enable parts of base_untrusted that are used by remoting client
1. base64, rand_util, threading, time and threads were previosly disabled in
base_untrusted. Remoting code depends on these parts of base, so they
need to be enabled.
2. Implemented NaCl version of rand_util.
3. Enabled glibc version of base_untrusted
BUG=134216
Review URL: https://chromiumcodereview.appspot.com/10795083
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148641 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gypi')
-rw-r--r-- | base/base.gypi | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/base/base.gypi b/base/base.gypi index ffc290b..63362f1 100644 --- a/base/base.gypi +++ b/base/base.gypi @@ -63,6 +63,8 @@ 'base_paths_win.cc', 'base_paths_win.h', 'base_switches.h', + 'base64.cc', + 'base64.h', 'basictypes.h', 'bind.h', 'bind_helpers.cc', @@ -303,6 +305,7 @@ 'property_bag.h', 'rand_util.cc', 'rand_util.h', + 'rand_util_nacl.cc', 'rand_util_posix.cc', 'rand_util_win.cc', 'run_loop.cc', @@ -338,6 +341,8 @@ 'string_util.h', 'string_util_posix.h', 'string_util_win.h', + 'string16.cc', + 'string16.h', 'stringize_macros.h', 'stringprintf.cc', 'stringprintf.h', @@ -425,6 +430,8 @@ 'threading/worker_pool_win.cc', 'time.cc', 'time.h', + 'time_mac.cc', + 'time_posix.cc', 'time_win.cc', 'timer.cc', 'timer.h', @@ -535,7 +542,6 @@ 'command_line.cc', 'cpu.cc', 'debug/stack_trace_posix.cc', - 'environment.cc', 'file_util.cc', 'file_util_posix.cc', 'file_util_proxy.cc', @@ -547,7 +553,6 @@ 'process_posix.cc', 'process_util.cc', 'process_util_posix.cc', - 'rand_util.cc', 'rand_util_posix.cc', 'scoped_native_library.cc', 'scoped_temp_dir.cc', |