summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
diff options
context:
space:
mode:
authorsbc <sbc@chromium.org>2016-02-12 19:03:52 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-13 03:04:54 +0000
commitfbdaad0aab2ce5e20efd7b231d40724ca8bb4e10 (patch)
treec47f17273dee55af1fa0a7309fb2d77216c9d3f7 /BUILD.gn
parent96c72eb40e6c98bfd7ecd57d77b788e68328475a (diff)
downloadchromium_src-fbdaad0aab2ce5e20efd7b231d40724ca8bb4e10.zip
chromium_src-fbdaad0aab2ce5e20efd7b231d40724ca8bb4e10.tar.gz
chromium_src-fbdaad0aab2ce5e20efd7b231d40724ca8bb4e10.tar.bz2
[NaCl SDK] Add initial support for building the SDK with gn
build_sdk.py still uses gyp. I have a followup CL to convert that to gn. BUG=585999 Review URL: https://codereview.chromium.org/1693053002 Cr-Commit-Position: refs/heads/master@{#375335}
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn7
1 files changed, 4 insertions, 3 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ce698a7..b0d678b 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -722,9 +722,6 @@ group("gn_only") {
"//third_party/libjpeg_turbo:simd_asm",
]
}
- if (enable_nacl) {
- deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
- }
if (use_ozone) {
deps += [ "//ui/ozone/demo" ]
}
@@ -734,6 +731,10 @@ group("gn_only") {
}
}
+ if (enable_nacl) {
+ deps += [ "//native_client_sdk/src:nacl_core_sdk" ]
+ }
+
if (is_android) {
deps += [
"//build/android/gyp/test:hello_world",