OLD | NEW |
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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 "DiskArbitration.framework", | 678 "DiskArbitration.framework", |
679 "IOKit.framework", | 679 "IOKit.framework", |
680 "ImageCaptureCore.framework", | 680 "ImageCaptureCore.framework", |
681 "OpenGL.framework", | 681 "OpenGL.framework", |
682 "QuartzCore.framework", | 682 "QuartzCore.framework", |
683 "SecurityInterface.framework", | 683 "SecurityInterface.framework", |
684 ] | 684 ] |
685 } | 685 } |
686 | 686 |
687 if (enable_rlz) { | 687 if (enable_rlz) { |
688 deps += [ ":rlz" ] | 688 sources += |
| 689 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 690 deps += [ "//rlz:rlz_lib" ] |
689 } | 691 } |
690 | 692 |
691 # TODO(GYP) | 693 # TODO(GYP) |
692 # Temporary fix to break the browser target into smaller chunks so it | 694 # Temporary fix to break the browser target into smaller chunks so it |
693 # will link with goma builds. | 695 # will link with goma builds. |
694 #["OS=="win" and chromium_win_pch==0", { | 696 #["OS=="win" and chromium_win_pch==0", { |
695 # "msvs_shard": 4, | 697 # "msvs_shard": 4, |
696 #}], | 698 #}], |
697 | 699 |
698 if (is_win) { | 700 if (is_win) { |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1188 ] | 1190 ] |
1189 } | 1191 } |
1190 | 1192 |
1191 if (enable_wifi_bootstrapping) { | 1193 if (enable_wifi_bootstrapping) { |
1192 sources += [ | 1194 sources += [ |
1193 "local_discovery/wifi/mock_wifi_manager.cc", | 1195 "local_discovery/wifi/mock_wifi_manager.cc", |
1194 "local_discovery/wifi/mock_wifi_manager.h", | 1196 "local_discovery/wifi/mock_wifi_manager.h", |
1195 ] | 1197 ] |
1196 } | 1198 } |
1197 } | 1199 } |
1198 | |
1199 if (enable_rlz_support) { | |
1200 source_set("rlz") { | |
1201 sources = | |
1202 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | |
1203 deps = [ | |
1204 "//components/google/core/browser", | |
1205 "//components/omnibox/browser", | |
1206 "//components/rlz", | |
1207 "//components/search_engines", | |
1208 "//rlz:rlz_lib", | |
1209 ] | |
1210 } | |
1211 } | |
OLD | NEW |