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

Side by Side Diff: components/infobars.gypi

Issue 1596713003: Discourage creation of Java infobars without InfoBarDelegates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/infobars/core 8 # GN version: //components/infobars/core
9 'target_name': 'infobars_core', 9 'target_name': 'infobars_core',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 30 matching lines...) Expand all
41 'conditions': [ 41 'conditions': [
42 ['OS != "ios" and OS != "android"', { 42 ['OS != "ios" and OS != "android"', {
43 'dependencies': [ 43 'dependencies': [
44 '../ui/gfx/gfx.gyp:gfx_vector_icons', 44 '../ui/gfx/gfx.gyp:gfx_vector_icons',
45 '../ui/native_theme/native_theme.gyp:native_theme', 45 '../ui/native_theme/native_theme.gyp:native_theme',
46 ], 46 ],
47 }], 47 }],
48 ], 48 ],
49 }, 49 },
50 ], 50 ],
51 'conditions': [
52 ['OS == "android"', {
53 'targets': [
54 {
55 'target_name': 'infobar_delegate_java',
56 'type': 'none',
57 'variables': {
58 'source_file': 'infobars/core/infobar_delegate.h',
59 },
60 'includes': [ '../build/android/java_cpp_enum.gypi' ],
61 },
62 ],
63 }],
64 ],
51 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698