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

Side by Side Diff: build/linux/system.gyp

Issue 128933005: Remove the base.gyp dependency from system.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 'libraries': [ 408 'libraries': [
409 '<!@(<(pkg-config) --libs-only-l gnome-keyring-1)', 409 '<!@(<(pkg-config) --libs-only-l gnome-keyring-1)',
410 ], 410 ],
411 }, 411 },
412 }], 412 }],
413 ], 413 ],
414 }, 414 },
415 { 415 {
416 'target_name': 'libbrlapi', 416 'target_name': 'libbrlapi',
417 'type': 'static_library', 417 'type': 'static_library',
418 'dependencies': [
419 '../../base/base.gyp:base',
420 ],
421 'all_dependent_settings': { 418 'all_dependent_settings': {
422 'include_dirs': [ 419 'include_dirs': [
423 '<(SHARED_INTERMEDIATE_DIR)', 420 '<(SHARED_INTERMEDIATE_DIR)',
424 ], 421 ],
425 'defines': [ 422 'defines': [
426 'USE_BRLAPI', 423 'USE_BRLAPI',
427 ], 424 ],
428 'conditions': [ 425 'conditions': [
429 ['linux_link_libbrlapi==1', { 426 ['linux_link_libbrlapi==1', {
430 'link_settings': { 427 'link_settings': {
431 'libraries': [ 428 'libraries': [
432 '-lbrlapi', 429 '-lbrlapi',
433 ], 430 ],
434 } 431 }
435 }], 432 }],
436 ], 433 ],
437 }, 434 },
435 'include_dirs': [
436 '../..',
437 ],
438 'hard_dependency': 1, 438 'hard_dependency': 1,
439 'actions': [ 439 'actions': [
440 { 440 {
441 'variables': { 441 'variables': {
442 'output_h': '<(SHARED_INTERMEDIATE_DIR)/library_loaders/libbrlapi.h' , 442 'output_h': '<(SHARED_INTERMEDIATE_DIR)/library_loaders/libbrlapi.h' ,
443 'output_cc': '<(INTERMEDIATE_DIR)/libbrlapi_loader.cc', 443 'output_cc': '<(INTERMEDIATE_DIR)/libbrlapi_loader.cc',
444 'generator': '../../tools/generate_library_loader/generate_library_l oader.py', 444 'generator': '../../tools/generate_library_loader/generate_library_l oader.py',
445 }, 445 },
446 'action_name': 'generate_brlapi_loader', 446 'action_name': 'generate_brlapi_loader',
447 'inputs': [ 447 'inputs': [
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 ], 887 ],
888 'libraries': [ 888 'libraries': [
889 '<!@(pkg-config --libs-only-l xrandr)', 889 '<!@(pkg-config --libs-only-l xrandr)',
890 ], 890 ],
891 }, 891 },
892 }], 892 }],
893 ], 893 ],
894 }, 894 },
895 ], 895 ],
896 } 896 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698