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

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

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 proto_library("delta_file_proto") { 999 proto_library("delta_file_proto") {
1000 sources = [ 1000 sources = [
1001 "android/proto/delta_file.proto", 1001 "android/proto/delta_file.proto",
1002 ] 1002 ]
1003 } 1003 }
1004 } 1004 }
1005 1005
1006 if (is_win) { 1006 if (is_win) {
1007 source_set("chrome_process_finder") { 1007 source_set("chrome_process_finder") {
1008 sources = [ 1008 sources = [
1009 "chrome_process_finder_win.cc", 1009 "win/chrome_process_finder.cc",
1010 "chrome_process_finder_win.h", 1010 "win/chrome_process_finder.h",
1011 ] 1011 ]
1012 deps = [ 1012 deps = [
1013 "//base", 1013 "//base",
1014 "//chrome/common:constants", 1014 "//chrome/common:constants",
1015 ] 1015 ]
1016 if (enable_configuration_policy) { 1016 if (enable_configuration_policy) {
1017 deps += [ "//chrome/browser/policy:path_parser" ] 1017 deps += [ "//chrome/browser/policy:path_parser" ]
1018 } 1018 }
1019 } 1019 }
1020 } 1020 }
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 # linking all of the test support. 1374 # linking all of the test support.
1375 source_set("pepper_cdm_test_constants") { 1375 source_set("pepper_cdm_test_constants") {
1376 testonly = true 1376 testonly = true
1377 visibility = [ "//chrome/*" ] 1377 visibility = [ "//chrome/*" ]
1378 sources = [ 1378 sources = [
1379 "media/pepper_cdm_test_constants.cc", 1379 "media/pepper_cdm_test_constants.cc",
1380 "media/pepper_cdm_test_constants.h", 1380 "media/pepper_cdm_test_constants.h",
1381 ] 1381 ]
1382 } 1382 }
1383 } 1383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698