diff options
author | andybons <andybons@chromium.org> | 2015-10-14 11:49:30 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-14 18:50:21 +0000 |
commit | 027840da082368b8d51f06b9c310807540e50eea (patch) | |
tree | 0dabc4fdfe0f3230cb2cda24c24204904cd09017 /build | |
parent | 0b491ebfac32295787946e5e4e8a0342f872c5e0 (diff) | |
download | chromium_src-027840da082368b8d51f06b9c310807540e50eea.zip chromium_src-027840da082368b8d51f06b9c310807540e50eea.tar.gz chromium_src-027840da082368b8d51f06b9c310807540e50eea.tar.bz2 |
[GN]: support for loadable modules
+ Adds a new target type loadable_module and tool type solink_module. loadable_module will trigger the solink_module tool type in the toolchain.
+ Updates reference.md and editor configs.
BUG=369774
Review URL: https://codereview.chromium.org/1386783003
Cr-Commit-Position: refs/heads/master@{#354077}
Diffstat (limited to 'build')
-rw-r--r-- | build/toolchain/mac/BUILD.gn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn index 009c701..5d918d0 100644 --- a/build/toolchain/mac/BUILD.gn +++ b/build/toolchain/mac/BUILD.gn @@ -118,9 +118,9 @@ template("mac_toolchain") { rspfile = dylib + ".rsp" # These variables are not built into GN but are helpers that implement - # (1) linking to produce a .so, (2) extracting the symbols from that file - # to a temporary file, (3) if the temporary file has differences from the - # existing .TOC file, overwrite it, otherwise, don't change it. + # (1) linking to produce a .dylib, (2) extracting the symbols from that + # file to a temporary file, (3) if the temporary file has differences from + # the existing .TOC file, overwrite it, otherwise, don't change it. # # As a special case, if the library reexports symbols from other dynamic # libraries, we always update the .TOC and skip the temporary file and |