| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 if (enable_nacl) { | 10 if (enable_nacl) { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 sources = [ | 181 sources = [ |
| 182 "loader/nacl_helper_linux.cc", | 182 "loader/nacl_helper_linux.cc", |
| 183 "loader/nacl_helper_linux.h", | 183 "loader/nacl_helper_linux.h", |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 deps = [ | 186 deps = [ |
| 187 ":nacl", | 187 ":nacl", |
| 188 ":nacl_linux", | 188 ":nacl_linux", |
| 189 ":nacl_switches", | 189 ":nacl_switches", |
| 190 "//base", | 190 "//base", |
| 191 "//build/config/sanitizers:deps", |
| 191 "//content/public/common", | 192 "//content/public/common", |
| 192 "//crypto", | 193 "//crypto", |
| 193 "//ipc", | 194 "//ipc", |
| 194 ] | 195 ] |
| 195 | 196 |
| 196 cflags = [ "-fPIE" ] | 197 cflags = [ "-fPIE" ] |
| 197 | 198 |
| 198 ldflags = [ "-pie" ] | 199 ldflags = [ "-pie" ] |
| 199 | 200 |
| 200 if (!use_openssl) { | 201 if (!use_openssl) { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 315 |
| 315 if (is_linux) { | 316 if (is_linux) { |
| 316 sources += [ | 317 sources += [ |
| 317 "common/nacl_paths.cc", | 318 "common/nacl_paths.cc", |
| 318 "common/nacl_paths.h", | 319 "common/nacl_paths.h", |
| 319 ] | 320 ] |
| 320 | 321 |
| 321 defines = [ "__STDC_LIMIT_MACROS=1" ] | 322 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 322 } | 323 } |
| 323 } | 324 } |
| OLD | NEW |