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

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

Issue 1417673004: Make unit_tests compile in Mac GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mac
Patch Set: merge Created 5 years, 2 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 if (!is_android && !is_ios && enable_configuration_policy) { 376 if (!is_android && !is_ios && enable_configuration_policy) {
377 sources += [ 377 sources += [
378 "download/download_dir_policy_handler.cc", 378 "download/download_dir_policy_handler.cc",
379 "download/download_dir_policy_handler.h", 379 "download/download_dir_policy_handler.h",
380 ] 380 ]
381 } 381 }
382 if (is_mac) { 382 if (is_mac) {
383 sources += 383 sources +=
384 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") 384 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome")
385 deps += [ 385 deps += [
386 #"app_shim" TODO(GYP) bug 512600 386 "//chrome/app_shim",
387 #"browser_app_shim" TODO(GYP) bug 512600 387 "//chrome/browser/apps/app_shim",
388 ] 388 ]
389 } 389 }
390 if (is_mac || is_android) { 390 if (is_mac || is_android) {
391 sources += rebase_path( 391 sources += rebase_path(
392 gypi_values.chrome_browser_password_manager_mac_android_sources, 392 gypi_values.chrome_browser_password_manager_mac_android_sources,
393 ".", 393 ".",
394 "//chrome") 394 "//chrome")
395 } 395 }
396 if (enable_extensions) { 396 if (enable_extensions) {
397 public_deps += [ "//chrome/browser/extensions" ] 397 public_deps += [ "//chrome/browser/extensions" ]
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1253 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1254 deps = [ 1254 deps = [
1255 "//components/google/core/browser", 1255 "//components/google/core/browser",
1256 "//components/omnibox/browser", 1256 "//components/omnibox/browser",
1257 "//components/rlz", 1257 "//components/rlz",
1258 "//components/search_engines", 1258 "//components/search_engines",
1259 "//rlz:rlz_lib", 1259 "//rlz:rlz_lib",
1260 ] 1260 ]
1261 } 1261 }
1262 } 1262 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698