Left: | ||
Right: |
OLD | NEW |
---|---|
1 # Build libadblockplus using make | 1 # Build libadblockplus using make |
2 action("make") { | 2 action("make") { |
3 script = "subproc.py" | 3 script = "//third_party/libadblockplus_common/subproc.py" |
sergei
2018/01/19 09:01:57
Does "//" has a special meaning here? I would expe
sergei
2018/01/19 09:38:33
Acknowledged.
| |
4 _cwd = rebase_path(".") | 4 _cwd = rebase_path(".") |
5 _build_dir="${target_out_dir}/build" | 5 _build_dir="${target_out_dir}/build" |
6 _abs_build_dir=rebase_path("${_build_dir}") | 6 _abs_build_dir=rebase_path("${_build_dir}") |
7 | 7 |
8 inputs = [ | 8 inputs = [ |
9 ] | 9 ] |
10 | 10 |
11 outputs = [ | 11 outputs = [ |
12 "${_build_dir}/local/armeabi-v7a/libadblockplus.a", | 12 "${_build_dir}/local/armeabi-v7a/libadblockplus.a", |
13 "${_build_dir}/android_arm.release/libv8_libplatform.a", | 13 "${_build_dir}/android_arm.release/libv8_libplatform.a", |
(...skipping 22 matching lines...) Expand all Loading... | |
36 | 36 |
37 # workaround for building for Target platform on Linux GYP issue | 37 # workaround for building for Target platform on Linux GYP issue |
38 "--envCXX.host=g++", | 38 "--envCXX.host=g++", |
39 "--envCC.host=gcc" | 39 "--envCC.host=gcc" |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 config("headers") { | 43 config("headers") { |
44 include_dirs = [ "include" ] | 44 include_dirs = [ "include" ] |
45 } | 45 } |
OLD | NEW |