| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 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 | 6 |
| 7 if (enable_nacl) { | 7 if (enable_nacl) { |
| 8 # This is separate so it can be used by ../broker:nacl64. | 8 # This is separate so it can be used by ../broker:nacl64. |
| 9 static_library("minimal") { | 9 static_library("minimal") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "pnacl_types.h", | 59 "pnacl_types.h", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 public_deps = [ | 62 public_deps = [ |
| 63 ":minimal", | 63 ":minimal", |
| 64 ":switches", | 64 ":switches", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 deps = [ | 67 deps = [ |
| 68 "//base", | 68 "//base", |
| 69 "//content/public/common", | |
| 70 "//ipc", | 69 "//ipc", |
| 71 "//url", | 70 "//url", |
| 71 "//url/ipc:url_ipc", |
| 72 ] | 72 ] |
| 73 | 73 |
| 74 if (is_linux) { | 74 if (is_linux) { |
| 75 sources += [ | 75 sources += [ |
| 76 "nacl_paths.cc", | 76 "nacl_paths.cc", |
| 77 "nacl_paths.h", | 77 "nacl_paths.h", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 defines = [ "__STDC_LIMIT_MACROS=1" ] | 80 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 81 } | 81 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 104 "//content/public/common", | 104 "//content/public/common", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 static_library("switches") { | 108 static_library("switches") { |
| 109 sources = [ | 109 sources = [ |
| 110 "nacl_switches.cc", | 110 "nacl_switches.cc", |
| 111 "nacl_switches.h", | 111 "nacl_switches.h", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| OLD | NEW |