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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 362583002: Add more GN deps to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix libaddressinput include path Created 6 years, 5 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'variables': { 6 'variables': {
7 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 3403 matching lines...) Expand 10 before | Expand all | Expand 10 after
3414 'type': 'static_library', 3414 'type': 'static_library',
3415 'sources': [ 'browser/net/cert_logger.proto', ], 3415 'sources': [ 'browser/net/cert_logger.proto', ],
3416 'variables': { 3416 'variables': {
3417 'proto_in_dir': 'browser/net', 3417 'proto_in_dir': 'browser/net',
3418 'proto_out_dir': 'chrome/browser/net', 3418 'proto_out_dir': 'chrome/browser/net',
3419 }, 3419 },
3420 'includes': [ '../build/protoc.gypi', ], 3420 'includes': [ '../build/protoc.gypi', ],
3421 }, 3421 },
3422 { 3422 {
3423 # Protobuf compiler / generator for the suggestions service proto. 3423 # Protobuf compiler / generator for the suggestions service proto.
3424 # GN version: //chrome/browser/search/suggestions/proto
3424 'target_name': 'suggestions_proto', 3425 'target_name': 'suggestions_proto',
3425 'type': 'static_library', 3426 'type': 'static_library',
3426 'sources': [ 'browser/search/suggestions/proto/suggestions.proto', ], 3427 'sources': [ 'browser/search/suggestions/proto/suggestions.proto', ],
3427 'variables': { 3428 'variables': {
3428 'proto_in_dir': 'browser/search/suggestions/proto', 3429 'proto_in_dir': 'browser/search/suggestions/proto',
3429 'proto_out_dir': 'chrome/browser/search/suggestions/proto', 3430 'proto_out_dir': 'chrome/browser/search/suggestions/proto',
3430 }, 3431 },
3431 'includes': [ '../build/protoc.gypi', ], 3432 'includes': [ '../build/protoc.gypi', ],
3432 }, 3433 },
3433 { 3434 {
3434 # Protobuf compiler / generator for Probe Message. 3435 # Protobuf compiler / generator for Probe Message.
3436 # GN version: //chrome/browser/net:probe_message_proto
3435 'target_name': 'probe_message_proto', 3437 'target_name': 'probe_message_proto',
3436 'type': 'static_library', 3438 'type': 'static_library',
3437 'sources': [ 'browser/net/probe_message.proto' ], 3439 'sources': [ 'browser/net/probe_message.proto' ],
3438 'variables': { 3440 'variables': {
3439 'proto_in_dir': 'browser/net', 3441 'proto_in_dir': 'browser/net',
3440 'proto_out_dir': 'chrome/browser/net', 3442 'proto_out_dir': 'chrome/browser/net',
3441 }, 3443 },
3442 'includes': [ '../build/protoc.gypi' ] 3444 'includes': [ '../build/protoc.gypi' ]
3443 }, 3445 },
3444 { 3446 {
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
3586 'package_name': 'org/chromium/chrome/browser', 3588 'package_name': 'org/chromium/chrome/browser',
3587 'template_deps': ['browser/android/tab_load_status.h'], 3589 'template_deps': ['browser/android/tab_load_status.h'],
3588 }, 3590 },
3589 'includes': [ '../build/android/java_cpp_template.gypi' ], 3591 'includes': [ '../build/android/java_cpp_template.gypi' ],
3590 }, 3592 },
3591 ], 3593 ],
3592 }, 3594 },
3593 ], 3595 ],
3594 ], 3596 ],
3595 } 3597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698