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

Side by Side Diff: components/sad_tab.gypi

Issue 543663002: Componentize sad_tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN Created 6 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/sad_tab
9 'target_name': 'sad_tab',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../content/content.gyp:content',
14 '../ui/base/ui_base.gyp:ui_base',
15 '../url/url.gyp:url_lib',
16 'components_resources.gyp:components_resources',
17 'components_strings.gyp:components_strings',
18 ],
19 'include_dirs': [
20 '..',
21 ],
22 'sources': [
23 # Note: sources list duplicated in GN build.
24 'sad_tab/sad_tab.cc',
25 'sad_tab/sad_tab.h',
26 'sad_tab/sad_tab_client.h',
27 'sad_tab/sad_tab_helper.cc',
28 'sad_tab/sad_tab_helper.h',
29 'sad_tab/sad_tab_types.h',
30 'sad_tab/url_constants.cc',
31 'sad_tab/url_constants.h',
32 ],
33 'conditions': [
34 ['toolkit_views==1', {
35 'dependencies': [
36 '../ui/views/views.gyp:views',
37 ],
38 'sources': [
39 'sad_tab/views/sad_tab_view.cc',
40 'sad_tab/views/sad_tab_view.h',
41 ],
42 }],
43 ],
44 },
45 ],
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698