| # Copyright 2020 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/buildflag_header.gni") |
| import("//ios/build/chrome_build.gni") |
| |
| source_set("window_activities") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| sources = [ |
| "window_activity_helpers.h", |
| "window_activity_helpers.mm", |
| ] |
| deps = [ |
| ":ios_move_tab_activity_type_buildflags", |
| "//base", |
| "//ios/chrome/browser:chrome_url_constants", |
| "//ios/chrome/browser/url_loading:url_loading_params_header", |
| "//ios/web/public/navigation", |
| "//net", |
| "//url", |
| ] |
| } |
| |
| buildflag_header("ios_move_tab_activity_type_buildflags") { |
| header = "move_tab_activity_type_buildflags.h" |
| flags = [ "IOS_MOVE_TAB_ACTIVITY_TYPE=\"$ios_move_tab_activity_type\"" ] |
| } |