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

Side by Side Diff: components/service_tab_launcher.gypi

Issue 1057533005: Make service tab launcher a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « components/components.gyp ('k') | components/service_tab_launcher/BUILD.gn » ('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 2015 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 {
6 'targets': [
7 {
8 # GN: //components/serivce_tab_launcher:service_tab_launcher
9 'target_name': 'service_tab_launcher',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../content/content.gyp:content_browser',
14 'service_tab_launcher_jni_headers',
15 ],
16 'include_dirs': [
17 '..',
18 ],
19 'sources': [
20 'service_tab_launcher/browser/android/service_tab_launcher.cc',
21 'service_tab_launcher/browser/android/service_tab_launcher.h',
22 'service_tab_launcher/component_jni_registrar.cc',
23 'service_tab_launcher/component_jni_registrar.h',
24 ],
25 },
26 {
27 # GN: //components/serivce_tab_launcher:service_tab_launcher_java
28 'target_name': 'service_tab_launcher_java',
29 'type': 'none',
30 'dependencies': [
31 '../base/base.gyp:base',
32 '../content/content.gyp:content_java',
33 ],
34 'variables': {
35 'java_in_dir': 'service_tab_launcher/android/java',
36 },
37 'includes': [ '../build/java.gypi' ],
38 },
39 {
40 # GN: //components/serivce_tab_launcher:service_tab_launcher_jni_headers
41 'target_name': 'service_tab_launcher_jni_headers',
42 'type': 'none',
43 'sources': [
44 'service_tab_launcher/android/java/src/org/chromium/components/service_t ab_launcher/ServiceTabLauncher.java',
45 ],
46 'variables': {
47 'jni_gen_package': 'service_tab_launcher',
48 },
49 'includes': [ '../build/jni_generator.gypi' ],
50 },
51 ],
52 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/service_tab_launcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698