| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 } | 262 } |
| 263 | 263 |
| 264 if (use_seccomp_bpf) { | 264 if (use_seccomp_bpf) { |
| 265 defines += [ "USE_SECCOMP_BPF" ] | 265 defines += [ "USE_SECCOMP_BPF" ] |
| 266 } | 266 } |
| 267 } | 267 } |
| 268 } | 268 } |
| 269 } else { | 269 } else { |
| 270 group("nacl") { | 270 group("nacl") { |
| 271 } | 271 } |
| 272 group("nacl_helper") { |
| 273 } |
| 272 } | 274 } |
| 273 | 275 |
| 274 source_set("nacl_switches") { | 276 source_set("nacl_switches") { |
| 275 sources = [ | 277 sources = [ |
| 276 "common/nacl_switches.cc", | 278 "common/nacl_switches.cc", |
| 277 "common/nacl_switches.h", | 279 "common/nacl_switches.h", |
| 278 ] | 280 ] |
| 279 } | 281 } |
| 280 | 282 |
| 281 source_set("nacl_common") { | 283 source_set("nacl_common") { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 312 | 314 |
| 313 if (is_linux) { | 315 if (is_linux) { |
| 314 sources += [ | 316 sources += [ |
| 315 "common/nacl_paths.cc", | 317 "common/nacl_paths.cc", |
| 316 "common/nacl_paths.h", | 318 "common/nacl_paths.h", |
| 317 ] | 319 ] |
| 318 | 320 |
| 319 defines = [ "__STDC_LIMIT_MACROS=1" ] | 321 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 320 } | 322 } |
| 321 } | 323 } |
| OLD | NEW |