| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 if (enable_pnacl) { | 49 if (enable_pnacl) { |
| 50 data_deps += [ | 50 data_deps += [ |
| 51 # TODO(GYP): handle other architectures correctly. | 51 # TODO(GYP): handle other architectures correctly. |
| 52 "//ppapi/native_client/src/untrusted/pnacl_support_extension", | 52 "//ppapi/native_client/src/untrusted/pnacl_support_extension", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("nacl_browser") { | 57 source_set("nacl_browser") { |
| 58 sources = [ | 58 sources = [ |
| 59 "browser/bad_message.cc", |
| 60 "browser/bad_message.h", |
| 59 "browser/nacl_broker_host_win.cc", | 61 "browser/nacl_broker_host_win.cc", |
| 60 "browser/nacl_broker_host_win.h", | 62 "browser/nacl_broker_host_win.h", |
| 61 "browser/nacl_broker_service_win.cc", | 63 "browser/nacl_broker_service_win.cc", |
| 62 "browser/nacl_broker_service_win.h", | 64 "browser/nacl_broker_service_win.h", |
| 63 "browser/nacl_browser.cc", | 65 "browser/nacl_browser.cc", |
| 64 "browser/nacl_browser.h", | 66 "browser/nacl_browser.h", |
| 65 "browser/nacl_file_host.cc", | 67 "browser/nacl_file_host.cc", |
| 66 "browser/nacl_file_host.h", | 68 "browser/nacl_file_host.h", |
| 67 "browser/nacl_host_message_filter.cc", | 69 "browser/nacl_host_message_filter.cc", |
| 68 "browser/nacl_host_message_filter.h", | 70 "browser/nacl_host_message_filter.h", |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 303 |
| 302 if (is_linux) { | 304 if (is_linux) { |
| 303 sources += [ | 305 sources += [ |
| 304 "common/nacl_paths.cc", | 306 "common/nacl_paths.cc", |
| 305 "common/nacl_paths.h", | 307 "common/nacl_paths.h", |
| 306 ] | 308 ] |
| 307 | 309 |
| 308 defines = [ "__STDC_LIMIT_MACROS=1" ] | 310 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 309 } | 311 } |
| 310 } | 312 } |
| OLD | NEW |