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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10545037: Aura/GTK integration: Create a small stub library that can talk to GTK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky nits Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 4395 matching lines...) Expand 10 before | Expand all | Expand 10 after
4406 'browser/password_manager/native_backend_gnome_x.h', 4406 'browser/password_manager/native_backend_gnome_x.h',
4407 ], 4407 ],
4408 }], 4408 }],
4409 ['use_ash==1', { 4409 ['use_ash==1', {
4410 'dependencies': [ 4410 'dependencies': [
4411 '../ash/ash.gyp:ash', 4411 '../ash/ash.gyp:ash',
4412 '../ash/ash_strings.gyp:ash_strings', 4412 '../ash/ash_strings.gyp:ash_strings',
4413 '../ui/app_list/app_list.gyp:app_list', 4413 '../ui/app_list/app_list.gyp:app_list',
4414 ], 4414 ],
4415 }], 4415 }],
4416 ['use_aura==1 and use_ash==0 and OS=="linux"', {
4417 'dependencies': [
4418 # gtk2 is the only component that can interact with gtk2 in our new
4419 # world.
4420 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui',
4421 ],
4422 }],
4416 ['use_aura==1', { 4423 ['use_aura==1', {
4417 'sources/': [ 4424 'sources/': [
4418 ['exclude', '^browser/automation/automation_provider_win.cc'], 4425 ['exclude', '^browser/automation/automation_provider_win.cc'],
4419 ['exclude', '^browser/automation/chrome_frame_automation_provider.cc '], 4426 ['exclude', '^browser/automation/chrome_frame_automation_provider.cc '],
4420 ['exclude', '^browser/automation/chrome_frame_automation_provider.h' ], 4427 ['exclude', '^browser/automation/chrome_frame_automation_provider.h' ],
4421 ['exclude', '^browser/automation/testing_automation_provider_win.cc' ], 4428 ['exclude', '^browser/automation/testing_automation_provider_win.cc' ],
4422 ['exclude', '^browser/external_tab/external_tab_container_win.cc'], 4429 ['exclude', '^browser/external_tab/external_tab_container_win.cc'],
4423 ['exclude', '^browser/external_tab/external_tab_container_win.h'], 4430 ['exclude', '^browser/external_tab/external_tab_container_win.h'],
4424 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'], 4431 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'],
4425 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'], 4432 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'],
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
5176 'browser/metrics/proto/study.proto', 5183 'browser/metrics/proto/study.proto',
5177 ], 5184 ],
5178 'variables': { 5185 'variables': {
5179 'proto_in_dir': 'browser/metrics/proto', 5186 'proto_in_dir': 'browser/metrics/proto',
5180 'proto_out_dir': 'chrome/browser/metrics/proto', 5187 'proto_out_dir': 'chrome/browser/metrics/proto',
5181 }, 5188 },
5182 'includes': [ '../build/protoc.gypi' ] 5189 'includes': [ '../build/protoc.gypi' ]
5183 }, 5190 },
5184 ], 5191 ],
5185 } 5192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698