OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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: //apps | 8 # GN version: //apps |
9 'target_name': 'apps', | 9 'target_name': 'apps', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 { | 59 { |
60 'dependencies': [ | 60 'dependencies': [ |
61 'browser_chromeos', | 61 'browser_chromeos', |
62 ] | 62 ] |
63 } | 63 } |
64 ], | 64 ], |
65 ['enable_extensions==0', | 65 ['enable_extensions==0', |
66 { | 66 { |
67 'dependencies!': [ | 67 'dependencies!': [ |
68 'browser_extensions', | 68 'browser_extensions', |
| 69 'common/extensions/api/api.gyp:chrome_api', |
69 ], | 70 ], |
70 'sources/': [ | 71 'sources/': [ |
71 ['exclude', '.*'], | 72 ['exclude', '.*'], |
72 ], | 73 ], |
73 } | 74 } |
74 ], | 75 ], |
75 ['toolkit_views==1', { | 76 ['toolkit_views==1', { |
76 'dependencies': [ | 77 'dependencies': [ |
77 '../components/components.gyp:native_app_window', | 78 '../components/components.gyp:native_app_window', |
78 '../ui/strings/ui_strings.gyp:ui_strings', | 79 '../ui/strings/ui_strings.gyp:ui_strings', |
79 '../ui/views/views.gyp:views', | 80 '../ui/views/views.gyp:views', |
80 ], | 81 ], |
81 }, { # toolkit_views==0 | 82 }, { # toolkit_views==0 |
82 'sources/': [ | 83 'sources/': [ |
83 ['exclude', 'ui/views/'], | 84 ['exclude', 'ui/views/'], |
84 ], | 85 ], |
85 }], | 86 }], |
86 ], | 87 ], |
87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
88 'msvs_disabled_warnings': [ 4267, ], | 89 'msvs_disabled_warnings': [ 4267, ], |
89 }, | 90 }, |
90 ], # targets | 91 ], # targets |
91 } | 92 } |
OLD | NEW |