forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add chrome/browser/ui/views to GN build.
R=thestig@chromium.org Review URL: https://codereview.chromium.org/329943007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279203 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
brettw@chromium.org
committed
Jun 23, 2014
1 parent
3b816b9
commit 479fbf8
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
import("//build/config/ui.gni") | ||
|
||
assert(!is_android) | ||
|
||
component("views") { | ||
output_name = "browser_ui_views" | ||
sources = [ | ||
"accelerator_table.cc", | ||
"accelerator_table.h", | ||
"browser_dialogs.h", | ||
"chrome_views_export.h", | ||
"event_utils.cc", | ||
"event_utils.h", | ||
"tab_icon_view_model.h", | ||
"tabs/tab_renderer_data.cc", | ||
"tabs/tab_renderer_data.h", | ||
"tabs/tab_strip_observer.cc", | ||
"tabs/tab_strip_observer.h", | ||
"tabs/tab_strip_types.h", | ||
] | ||
|
||
defines = [ "CHROME_VIEWS_IMPLEMENTATION" ] | ||
|
||
deps = [ | ||
"//base", | ||
"//skia", | ||
"//ui/base", | ||
"//ui/events", | ||
"//ui/gfx", | ||
"//ui/gfx/geometry", | ||
"//url", | ||
] | ||
|
||
if (use_ash) { | ||
#deps += [ "//ash" ] TODO(GYP) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters