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

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 url_constants.cc Created 6 years, 2 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/resources/sad_tab_scaled_resources.grdp ('k') | components/sad_tab/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 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 ['OS=="mac"', {
44 'dependencies': [
45 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:go ogle_toolbox_for_mac',
46 '../ui/gfx/gfx.gyp:gfx',
47 ],
48 'sources': [
49 'sad_tab/cocoa/sad_tab_controller.h',
50 'sad_tab/cocoa/sad_tab_controller.mm',
51 'sad_tab/cocoa/sad_tab_view.h',
52 'sad_tab/cocoa/sad_tab_view.mm',
53 ],
54 }],
55 ],
56 },
57 ],
58 }
OLDNEW
« no previous file with comments | « components/resources/sad_tab_scaled_resources.grdp ('k') | components/sad_tab/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698