| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 | 6 |
| 7 source_set("libevent") { | 7 source_set("libevent") { |
| 8 sources = [ | 8 sources = [ |
| 9 "buffer.c", | 9 "buffer.c", |
| 10 "evbuffer.c", | 10 "evbuffer.c", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "nacl_nonsfi/event-config.h", | 47 "nacl_nonsfi/event-config.h", |
| 48 "nacl_nonsfi/random.c", | 48 "nacl_nonsfi/random.c", |
| 49 "nacl_nonsfi/signal_stub.c", | 49 "nacl_nonsfi/signal_stub.c", |
| 50 ] | 50 ] |
| 51 include_dirs = [ "nacl_nonsfi" ] | 51 include_dirs = [ "nacl_nonsfi" ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 configs -= [ "//build/config/compiler:chromium_code" ] | 54 configs -= [ "//build/config/compiler:chromium_code" ] |
| 55 configs += [ "//build/config/compiler:no_chromium_code" ] | 55 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 56 } | 56 } |
| OLD | NEW |