| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'includes': [ | 5 'includes': [ |
| 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. | 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. |
| 7 '../../build/util/version.gypi' | 7 '../../build/util/version.gypi' |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 }, | 98 }, |
| 99 }, | 99 }, |
| 100 'includes': [ '../../build/android/jinja_template.gypi' ], | 100 'includes': [ '../../build/android/jinja_template.gypi' ], |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 # The base library used in both ChromePublic and ChromeSyncShell. | 103 # The base library used in both ChromePublic and ChromeSyncShell. |
| 104 'target_name': 'libchrome_base', | 104 'target_name': 'libchrome_base', |
| 105 'type': 'none', | 105 'type': 'none', |
| 106 'dependencies': [ | 106 'dependencies': [ |
| 107 '../../chrome/chrome.gyp:chrome_android_core', | 107 '../../chrome/chrome.gyp:chrome_android_core', |
| 108 # TODO(yfriedman): move this DEP to chrome_android_core to be shared | |
| 109 # between internal/external. | |
| 110 '../../third_party/cld_2/cld_2.gyp:cld2_dynamic', | |
| 111 ], | 108 ], |
| 112 'include_dirs': [ | 109 'include_dirs': [ |
| 113 '../..', | 110 '../..', |
| 114 ], | 111 ], |
| 115 'conditions': [ | 112 'conditions': [ |
| 116 # conditions for order_text_section | 113 # conditions for order_text_section |
| 117 # Cygprofile methods need to be linked into the instrumented build. | 114 # Cygprofile methods need to be linked into the instrumented build. |
| 118 ['order_profiling!=0', { | 115 ['order_profiling!=0', { |
| 119 'conditions': [ | 116 'conditions': [ |
| 120 ['OS=="android"', { | 117 ['OS=="android"', { |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 } | 411 } |
| 415 ], | 412 ], |
| 416 ], | 413 ], |
| 417 } | 414 } |
| 418 | 415 |
| 419 # Local Variables: | 416 # Local Variables: |
| 420 # tab-width:2 | 417 # tab-width:2 |
| 421 # indent-tabs-mode:nil | 418 # indent-tabs-mode:nil |
| 422 # End: | 419 # End: |
| 423 # vim: set expandtab tabstop=2 shiftwidth=2: | 420 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |