diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 18:21:19 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 18:21:19 +0000 |
commit | af3176a286d63c0db0ca7370e37b8e452e2a0200 (patch) | |
tree | c82605aff317ffeda943ba1afe240694c9ac8f17 /chrome/chrome.gyp | |
parent | 990de36904afa4af6bd23728cd5fae8468593d30 (diff) | |
download | chromium_src-af3176a286d63c0db0ca7370e37b8e452e2a0200.zip chromium_src-af3176a286d63c0db0ca7370e37b8e452e2a0200.tar.gz chromium_src-af3176a286d63c0db0ca7370e37b8e452e2a0200.tar.bz2 |
Use protobuf_lite to save on binary size.
Now that we have a forked protobuf-lite library which can retain
unknown fields, we can switch to using protobuf-lite. The full
protobuf target has been renamed to hopefully avoid accidental use in
the future.
This saves 357K from a stripped, Release, Linux 'chrome' binary
(48032752 -> 47676176).
BUG=56579
TEST=sync_unit_tests
Review URL: http://codereview.chromium.org/3793001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62426 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 572449d..91a4636 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -1032,9 +1032,7 @@ '../skia/skia.gyp:skia', '../third_party/libjingle/libjingle.gyp:libjingle', 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', - # TODO(akalin): Change back to protobuf_lite once it supports - # preserving unknown fields. - '../third_party/protobuf/protobuf.gyp:protobuf#target', + '../third_party/protobuf/protobuf.gyp:protobuf_lite#target', ], 'conditions': [ ['OS=="win"', { |