Change log:372312ba2f..64b2aa35c9Full diff:372312ba2f..64b2aa35c9Roll chromium third_party 7492eba5e9..dec617523d Change log:7492eba5e9..dec617523dChanged dependencies: * src/base:3b2962827a..214ceb8013* src/build:c447cb6160..a429f6047e* src/ios:fbe9f18a1b..5cbbe2cfea* src/testing:51411f0ada..8b1137b1a5* src/third_party/freetype/src:9e345c9117..d45d4b97e6* src/tools:c81034c6c7..8c2b5be38aDEPS diff:372312ba2f..64b2aa35c9/DEPS No update to Clang. TBR=buildbot@webrtc.org, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal NO_AUTOIMPORT_DEPS_CHECK=true Change-Id: Iee2b2fe663a82c02d8a583ee8a9e4f3634dcdfa2 Reviewed-on: https://webrtc-review.googlesource.com/80082 Commit-Queue: WebRTC Buildbot <buildbot@webrtc.org> Reviewed-by: WebRTC Buildbot <buildbot@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23459}
31 lines
764 B
Plaintext
31 lines
764 B
Plaintext
# Copyright 2015 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# A tool that removes all non-interface-specific parts from a .jar file.
|
|
|
|
if (current_toolchain == host_toolchain) {
|
|
executable("ijar") {
|
|
sources = [
|
|
"classfile.cc",
|
|
"common.h",
|
|
"ijar.cc",
|
|
"mapped_file.h",
|
|
"zip.cc",
|
|
"zip.h",
|
|
]
|
|
if (is_win) {
|
|
sources += [ "mapped_file_windows.cc" ]
|
|
} else {
|
|
sources += [ "mapped_file_unix.cc" ]
|
|
}
|
|
|
|
# Always build release since this is a build tool.
|
|
if (is_debug) {
|
|
configs -= [ "//build/config:debug" ]
|
|
configs += [ "//build/config:release" ]
|
|
}
|
|
ldflags = [ "-lz" ]
|
|
}
|
|
}
|