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 config("exclude_all_libs") { | |
| 6 ldflags = [ "-Wl,--exclude-libs=ALL" ] | |
|
Chris Masone
2014/07/14 19:43:42
I _think_ this is the right way to translate the c
| |
| 7 } | |
| 8 | |
| 9 source_set("system") { | |
| 10 sources = [ | |
| 11 "buffer.h", | |
| 12 "core.h", | |
| 13 "data_pipe.h", | |
| 14 "functions.h", | |
| 15 "macros.h", | |
| 16 "message_pipe.h", | |
| 17 "system_export.h", | |
| 18 "types.h", | |
| 19 "../../../public/platform/native/system_thunks.cc", | |
| 20 "../../../public/platform/native/system_thunks.h", | |
|
Chris Masone
2014/07/14 19:43:41
I'm also not sure this is the right way to referen
yzshen1
2014/07/14 19:53:11
I think it should be fine because I have seen this
Chris Masone
2014/07/14 19:58:54
Acknowledged.
| |
| 21 ] | |
| 22 defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] | |
| 23 | |
| 24 if (is_android) { | |
| 25 all_dependent_configs -= [ ":no_exclude_all_libs" ] | |
|
yzshen1
2014/07/14 19:53:11
Mismatch name?
(I assume you want to use exclude_a
Chris Masone
2014/07/14 19:58:54
That's what I was concerned about. So I should go
| |
| 26 } | |
| 27 } | |
| OLD | NEW |