| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (enable_nacl) { | 9 if (enable_nacl) { |
| 10 source_set("nacl") { | 10 source_set("nacl") { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "common/nacl_constants.h", | 277 "common/nacl_constants.h", |
| 278 "common/nacl_host_messages.cc", | 278 "common/nacl_host_messages.cc", |
| 279 "common/nacl_host_messages.h", | 279 "common/nacl_host_messages.h", |
| 280 "common/nacl_messages.cc", | 280 "common/nacl_messages.cc", |
| 281 "common/nacl_messages.h", | 281 "common/nacl_messages.h", |
| 282 "common/nacl_nonsfi_util.cc", | 282 "common/nacl_nonsfi_util.cc", |
| 283 "common/nacl_nonsfi_util.h", | 283 "common/nacl_nonsfi_util.h", |
| 284 "common/nacl_process_type.h", | 284 "common/nacl_process_type.h", |
| 285 "common/nacl_renderer_messages.cc", | 285 "common/nacl_renderer_messages.cc", |
| 286 "common/nacl_renderer_messages.h", | 286 "common/nacl_renderer_messages.h", |
| 287 "common/nacl_sandbox_type_mac.h", | 287 "common/nacl_sandbox_type.h", |
| 288 "common/nacl_types.cc", | 288 "common/nacl_types.cc", |
| 289 "common/nacl_types.h", | 289 "common/nacl_types.h", |
| 290 "common/nacl_types_param_traits.cc", | 290 "common/nacl_types_param_traits.cc", |
| 291 "common/nacl_types_param_traits.h", | 291 "common/nacl_types_param_traits.h", |
| 292 "common/pnacl_types.cc", | 292 "common/pnacl_types.cc", |
| 293 "common/pnacl_types.h", | 293 "common/pnacl_types.h", |
| 294 ] | 294 ] |
| 295 | 295 |
| 296 deps = [ | 296 deps = [ |
| 297 ":nacl_switches", | 297 ":nacl_switches", |
| 298 "//base", | 298 "//base", |
| 299 "//content/public/common", | 299 "//content/public/common", |
| 300 "//ipc", | 300 "//ipc", |
| 301 "//url", | 301 "//url", |
| 302 ] | 302 ] |
| 303 | 303 |
| 304 if (is_linux) { | 304 if (is_linux) { |
| 305 sources += [ | 305 sources += [ |
| 306 "common/nacl_paths.cc", | 306 "common/nacl_paths.cc", |
| 307 "common/nacl_paths.h", | 307 "common/nacl_paths.h", |
| 308 ] | 308 ] |
| 309 | 309 |
| 310 defines = [ "__STDC_LIMIT_MACROS=1" ] | 310 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 311 } | 311 } |
| 312 } | 312 } |
| OLD | NEW |