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

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

Issue 2043933002: Move IPC fuzzer switches and helpers from chrome/common to content/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove CONTENT_EXPORT 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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")
14 13
15 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 14 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
16 # produces a conflict for the "grit" template so we have to only include one. 15 # produces a conflict for the "grit" template so we have to only include one.
17 if (is_android) { 16 if (is_android) {
18 import("//build/config/android/rules.gni") 17 import("//build/config/android/rules.gni")
19 } else { 18 } else {
20 import("//tools/grit/grit_rule.gni") 19 import("//tools/grit/grit_rule.gni")
21 } 20 }
22 if (is_desktop_linux) { 21 if (is_desktop_linux) {
23 import("//build/config/linux/pkg_config.gni") 22 import("//build/config/linux/pkg_config.gni")
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 if (enable_wayland_server) { 952 if (enable_wayland_server) {
954 deps += [ 953 deps += [
955 "//components/exo", 954 "//components/exo",
956 "//components/exo/wayland", 955 "//components/exo/wayland",
957 ] 956 ]
958 sources += [ 957 sources += [
959 "chrome_browser_main_extra_parts_exo.cc", 958 "chrome_browser_main_extra_parts_exo.cc",
960 "chrome_browser_main_extra_parts_exo.h", 959 "chrome_browser_main_extra_parts_exo.h",
961 ] 960 ]
962 } 961 }
963
964 if (enable_ipc_fuzzer) {
965 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
966 }
967 } 962 }
968 963
969 if (android_java_ui) { 964 if (android_java_ui) {
970 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers 965 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers
971 generate_jni("jni_headers") { 966 generate_jni("jni_headers") {
972 sources = 967 sources =
973 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome") 968 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome")
974 jni_package = "chrome" 969 jni_package = "chrome"
975 } 970 }
976 971
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1340 deps = [ 1335 deps = [
1341 "//components/google/core/browser", 1336 "//components/google/core/browser",
1342 "//components/omnibox/browser", 1337 "//components/omnibox/browser",
1343 "//components/rlz", 1338 "//components/rlz",
1344 "//components/search_engines", 1339 "//components/search_engines",
1345 "//rlz:rlz_lib", 1340 "//rlz:rlz_lib",
1346 ] 1341 ]
1347 } 1342 }
1348 } 1343 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698