OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |