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

Side by Side Diff: components/memory_coordinator/android/BUILD.gn

Issue 2259743002: Add MemoryStateListenerAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: native Created 4 years, 3 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 | « components/BUILD.gn ('k') | components/memory_coordinator/android/DEPS » ('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 2016 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 import("//build/config/android/rules.gni")
6
7 _jni_sources = [ "java/src/org/chromium/components/memory_coordinator/MemoryStat eListener.java" ]
8
9 generate_jni("jni_headers") {
10 sources = _jni_sources
11 jni_package = "memory_coordinator"
12 }
13
14 android_library("memory_coordinator_java") {
15 java_files = _jni_sources
16 deps = [
17 "//base:base_java",
18 ]
19 }
20
21 component("android") {
22 output_name = "memory_coordinator_android"
23
24 sources = [
25 "component_jni_registrar.cc",
26 "component_jni_registrar.h",
27 "memory_state_listener_android.cc",
28 "memory_state_listener_android.h",
29 ]
30
31 defines = [ "MEMORY_COORDINATOR_IMPLEMENTATION" ]
32
33 deps = [
34 ":jni_headers",
35 "//base",
36 ]
37 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/memory_coordinator/android/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698