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

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

Issue 1916493003: GN configs for ipc fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: public_configs Created 4 years, 8 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")
11 import("//third_party/kasko/kasko.gni") 11 import("//third_party/kasko/kasko.gni")
12 import("//third_party/protobuf/proto_library.gni") 12 import("//third_party/protobuf/proto_library.gni")
13 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
13 14
14 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 15 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
15 # produces a conflict for the "grit" template so we have to only include one. 16 # produces a conflict for the "grit" template so we have to only include one.
16 if (is_android) { 17 if (is_android) {
17 import("//build/config/android/rules.gni") 18 import("//build/config/android/rules.gni")
18 } else { 19 } else {
19 import("//tools/grit/grit_rule.gni") 20 import("//tools/grit/grit_rule.gni")
20 } 21 }
21 if (is_desktop_linux) { 22 if (is_desktop_linux) {
22 import("//build/config/linux/pkg_config.gni") 23 import("//build/config/linux/pkg_config.gni")
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 if (enable_wayland_server) { 964 if (enable_wayland_server) {
964 deps += [ 965 deps += [
965 "//components/exo", 966 "//components/exo",
966 "//components/exo/wayland", 967 "//components/exo/wayland",
967 ] 968 ]
968 sources += [ 969 sources += [
969 "chrome_browser_main_extra_parts_exo.cc", 970 "chrome_browser_main_extra_parts_exo.cc",
970 "chrome_browser_main_extra_parts_exo.h", 971 "chrome_browser_main_extra_parts_exo.h",
971 ] 972 ]
972 } 973 }
974
975 if (enable_ipc_fuzzer) {
976 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
977 }
973 } 978 }
974 979
975 if (android_java_ui) { 980 if (android_java_ui) {
976 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers 981 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers
977 generate_jni("jni_headers") { 982 generate_jni("jni_headers") {
978 sources = 983 sources =
979 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome") 984 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome")
980 jni_package = "chrome" 985 jni_package = "chrome"
981 } 986 }
982 987
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1335 deps = [ 1340 deps = [
1336 "//components/google/core/browser", 1341 "//components/google/core/browser",
1337 "//components/omnibox/browser", 1342 "//components/omnibox/browser",
1338 "//components/rlz", 1343 "//components/rlz",
1339 "//components/search_engines", 1344 "//components/search_engines",
1340 "//rlz:rlz_lib", 1345 "//rlz:rlz_lib",
1341 ] 1346 ]
1342 } 1347 }
1343 } 1348 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | tools/ipc_fuzzer/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698