OLD | NEW |
---|---|
(Empty) | |
1 | |
brettw
2014/04/15 20:50:26
Copyright.
cjhopman
2014/04/17 17:57:03
Done.
| |
2 config("cpu_features_include") { | |
3 include_dirs = ["ndk/sources/android/cpufeatures"] | |
brettw
2014/04/15 20:50:26
Spaces inside [ ], same below
cjhopman
2014/04/17 17:57:03
Done.
| |
4 } | |
5 | |
6 static_library("cpu_features") { | |
brettw
2014/04/15 20:50:26
static_library -> source_set
cjhopman
2014/04/17 17:57:03
Done.
| |
7 sources = ["ndk/sources/android/cpufeatures/cpu-features.c"] | |
8 direct_dependent_configs = [":cpu_features_include"] | |
9 | |
10 configs -= [ "//build/config/compiler:chromium_code" ] | |
11 configs += [ "//build/config/compiler:no_chromium_code" ] | |
12 } | |
OLD | NEW |