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 sources += | 688 deps += [ ":rlz" ] |
689 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | |
690 deps += [ "//rlz:rlz_lib" ] | |
691 } | 689 } |
692 | 690 |
693 # TODO(GYP) | 691 # TODO(GYP) |
694 # Temporary fix to break the browser target into smaller chunks so it | 692 # Temporary fix to break the browser target into smaller chunks so it |
695 # will link with goma builds. | 693 # will link with goma builds. |
696 #["OS=="win" and chromium_win_pch==0", { | 694 #["OS=="win" and chromium_win_pch==0", { |
697 # "msvs_shard": 4, | 695 # "msvs_shard": 4, |
698 #}], | 696 #}], |
699 | 697 |
700 if (is_win) { | 698 if (is_win) { |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 ] | 1188 ] |
1191 } | 1189 } |
1192 | 1190 |
1193 if (enable_wifi_bootstrapping) { | 1191 if (enable_wifi_bootstrapping) { |
1194 sources += [ | 1192 sources += [ |
1195 "local_discovery/wifi/mock_wifi_manager.cc", | 1193 "local_discovery/wifi/mock_wifi_manager.cc", |
1196 "local_discovery/wifi/mock_wifi_manager.h", | 1194 "local_discovery/wifi/mock_wifi_manager.h", |
1197 ] | 1195 ] |
1198 } | 1196 } |
1199 } | 1197 } |
| 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 |