diff options
author | fmalita <fmalita@chromium.org> | 2016-10-31 07:22:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-31 07:22:24 -0700 |
commit | fb4b9a27a1a0267e44aa4c8766322e53a06d3c37 (patch) | |
tree | ee6cf8fe473cfce9934b86ea508db030a554d219 /gyp | |
parent | 5de9afc8526fe266cee4f32e1cdf652622fa1e3d (diff) |
Add missing sk_tool_utils flags_common dependency
Not sure why this is only a problem on my workstation, but SampleApp linking is borked with
obj/gyp/../tools/sk_tool_utils.sk_tool_utils.o: In function `sk_tool_utils::platform_os_name()':
/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:128: undefined reference to `FLAGS_key'
/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:129: undefined reference to `FLAGS_key'
/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:127: undefined reference to `FLAGS_key'
obj/gyp/../tools/sk_tool_utils.sk_tool_utils.o: In function `sk_tool_utils::major_platform_os_name()':
/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:140: undefined reference to `FLAGS_key'
/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:141: undefined reference to `FLAGS_key'
obj/gyp/../tools/sk_tool_utils.sk_tool_utils.o:/mnt/screamin/src/blink/src/third_party/skia/out/Debug/../../tools/sk_tool_utils.cpp:139: more undefined references to `FLAGS_key' follow
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
R=mtklein@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2464903002
Review-Url: https://codereview.chromium.org/2464903002
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/tools.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gyp/tools.gyp b/gyp/tools.gyp index 99edaa0301..2e1aaab86c 100644 --- a/gyp/tools.gyp +++ b/gyp/tools.gyp @@ -182,6 +182,7 @@ 'dependencies': [ 'resources', 'flags.gyp:flags', + 'flags.gyp:flags_common', 'skia_lib.gyp:skia_lib', ], 'direct_dependent_settings': { |