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

Side by Side Diff: components/navigation_interception/BUILD.gn

Issue 397953005: Add more components to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: less android Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/navigation_interception.gypi ('k') | components/network_time.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/rules.gni")
7 }
8
9 static_library("navigation_interception") {
10 sources = [
11 "intercept_navigation_resource_throttle.cc",
12 "intercept_navigation_resource_throttle.h",
13 "navigation_params.h",
14 "navigation_params.cc",
15 ]
16
17 deps = [
18 "//base",
19 "//content/public/browser",
20 "//content/public/common",
21 "//net",
22 ]
23
24 if (is_android) {
25 sources += [
26 "component_jni_registrar.cc",
27 "component_jni_registrar.h",
28 "intercept_navigation_delegate.cc",
29 "intercept_navigation_delegate.h",
30 "navigation_params_android.h",
31 "navigation_params_android.cc",
32 ]
33 deps += [ ":jni_headers" ]
34 }
35 }
36
37 if (is_android) {
38
39 # TODO(GYP): navigation_interception_java target
40
41 generate_jni("jni_headers") {
42 sources = [
43 "android/java/src/org/chromium/components/navigation_interception/Intercep tNavigationDelegate.java",
44 "android/java/src/org/chromium/components/navigation_interception/Navigati onParams.java",
45 ]
46 jni_package = "navigation_interception"
47 }
48 }
OLDNEW
« no previous file with comments | « components/navigation_interception.gypi ('k') | components/network_time.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698