Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env bash | |
| 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 # This script returns the flags that should be passed to clang. | |
| 7 | |
| 8 THIS_ABS_DIR=$(cd $(dirname $0) && echo $PWD) | |
| 9 CLANG_LIB_PATH=$THIS_ABS_DIR/../../../third_party/llvm-build/Release+Asserts/lib | |
| 10 | |
| 11 if uname -s | grep -q Darwin; then | |
| 12 LIBSUFFIX=dylib | |
| 13 else | |
| 14 LIBSUFFIX=so | |
| 15 fi | |
| 16 | |
| 17 echo -Xclang -load -Xclang $CLANG_LIB_PATH/libBlinkGCPlugin.$LIBSUFFIX \ | |
| 18 -Xclang -add-plugin -Xclang blink-gc-plugin | |
|
Nico
2014/01/17 20:35:49
You'll also have to add this to gn like in https:/
| |
| OLD | NEW |