Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("system") { | |
| 6 sources = [ | |
| 7 "buffer.h", | |
| 8 "core.h", | |
| 9 "data_pipe.h", | |
| 10 "functions.h", | |
| 11 "macros.h", | |
| 12 "message_pipe.h", | |
| 13 "system_export.h", | |
| 14 "types.h", | |
| 15 "../../platform/native/system_thunks.cc", | |
| 16 "../../platform/native/system_thunks.h", | |
| 17 ] | |
| 18 defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] | |
| 19 | |
| 20 if (is_android) { | |
| 21 all_dependent_configs -= [ ":no_export_static_lib_symbols" ] | |
|
yzshen1
2014/07/14 21:19:39
I think this should have the path to the config?
Chris Masone
2014/07/14 21:24:54
Good catch. I think there may also be something el
| |
| 22 } | |
| 23 } | |
| OLD | NEW |