• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5config("compiler_defaults") {
6  if (current_os == "linux") {
7    cflags = [
8      "-fPIC",
9      "-pthread",
10    ]
11  }
12}
13
14config("executable_ldconfig") {
15  if (!is_mac) {
16    ldflags = [
17      "-Wl,-rpath=\$ORIGIN/",
18      "-Wl,-rpath-link=",
19    ]
20  }
21}
22