Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: components/variations/BUILD.gn

Issue 2149483002: Reduce chrome.exe .text size by 50 KB with static_library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaking comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 source_set("variations") { 9 static_library("variations") {
10 sources = [ 10 sources = [
11 "active_field_trials.cc", 11 "active_field_trials.cc",
12 "active_field_trials.h", 12 "active_field_trials.h",
13 "android/component_jni_registrar.cc", 13 "android/component_jni_registrar.cc",
14 "android/component_jni_registrar.h", 14 "android/component_jni_registrar.h",
15 "android/variations_associated_data_android.cc", 15 "android/variations_associated_data_android.cc",
16 "android/variations_associated_data_android.h", 16 "android/variations_associated_data_android.h",
17 "android/variations_seed_bridge.cc", 17 "android/variations_seed_bridge.cc",
18 "android/variations_seed_bridge.h", 18 "android/variations_seed_bridge.h",
19 "caching_permuted_entropy_provider.cc", 19 "caching_permuted_entropy_provider.cc",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 deps = [ 117 deps = [
118 ":variations", 118 ":variations",
119 "net", 119 "net",
120 "proto", 120 "proto",
121 "//base/test:test_support", 121 "//base/test:test_support",
122 "//components/prefs:test_support", 122 "//components/prefs:test_support",
123 "//testing/gtest", 123 "//testing/gtest",
124 "//third_party/zlib:compression_utils", 124 "//third_party/zlib:compression_utils",
125 ] 125 ]
126 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698