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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1212163011: Componentize chrome/browser/rlz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation with gn Created 5 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 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
678 "ImageCaptureCore.framework", 678 "ImageCaptureCore.framework",
679 "OpenGL.framework", 679 "OpenGL.framework",
680 "QuartzCore.framework", 680 "QuartzCore.framework",
681 "SecurityInterface.framework", 681 "SecurityInterface.framework",
682 ] 682 ]
683 } 683 }
684 684
685 if (enable_rlz) { 685 if (enable_rlz) {
686 sources += 686 sources +=
687 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 687 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
688 deps += [ "//rlz:rlz_lib" ] 688 deps += [
689 "//components/rlz",
690 "//rlz:rlz_lib",
691 ]
689 } 692 }
690 693
691 # TODO(GYP) 694 # TODO(GYP)
692 # Temporary fix to break the browser target into smaller chunks so it 695 # Temporary fix to break the browser target into smaller chunks so it
693 # will link with goma builds. 696 # will link with goma builds.
694 #["OS=="win" and chromium_win_pch==0", { 697 #["OS=="win" and chromium_win_pch==0", {
695 # "msvs_shard": 4, 698 # "msvs_shard": 4,
696 #}], 699 #}],
697 700
698 if (is_win) { 701 if (is_win) {
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 ] 1189 ]
1187 } 1190 }
1188 1191
1189 if (enable_wifi_bootstrapping) { 1192 if (enable_wifi_bootstrapping) {
1190 sources += [ 1193 sources += [
1191 "local_discovery/wifi/mock_wifi_manager.cc", 1194 "local_discovery/wifi/mock_wifi_manager.cc",
1192 "local_discovery/wifi/mock_wifi_manager.h", 1195 "local_discovery/wifi/mock_wifi_manager.h",
1193 ] 1196 ]
1194 } 1197 }
1195 } 1198 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/DEPS » ('j') | chrome/browser/rlz/chrome_rlz_tracker_delegate_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698